From f9bf71a34922b172a1c57c4daf3b15de47ca12b0 Mon Sep 17 00:00:00 2001 From: Albert Santoni Date: Thu, 15 Jan 2015 16:28:18 -0500 Subject: [PATCH 01/35] Moved the Station Logo field to GeneralPreferences, and stopped using AJAX on the general prefs form --- .../controllers/PreferenceController.php | 31 ++++++++----------- .../application/forms/GeneralPreferences.php | 15 +++++++++ airtime_mvc/application/forms/Preferences.php | 10 ++++-- .../application/forms/SupportSettings.php | 13 -------- .../views/scripts/form/preferences.phtml | 4 ++- .../scripts/form/preferences_general.phtml | 4 +++ .../views/scripts/form/support-setting.phtml | 20 ------------ .../views/scripts/preference/index.phtml | 9 +++--- airtime_mvc/public/css/styles.css | 1 + .../js/airtime/preferences/preferences.js | 5 +-- 10 files changed, 50 insertions(+), 62 deletions(-) diff --git a/airtime_mvc/application/controllers/PreferenceController.php b/airtime_mvc/application/controllers/PreferenceController.php index 84718c66db..767fd3b621 100644 --- a/airtime_mvc/application/controllers/PreferenceController.php +++ b/airtime_mvc/application/controllers/PreferenceController.php @@ -34,15 +34,11 @@ public function indexAction() $form = new Application_Form_Preferences(); $values = array(); - if ($request->isPost()) { - $params = $request->getPost(); - $postData = explode('&', $params['data']); - foreach($postData as $k=>$v) { - $v = explode('=', $v); - $values[$v[0]] = urldecode($v[1]); - } - if ($form->isValid($values)) { + if ($request->isPost()) { + $values = $request->getPost(); + if ($form->isValid($values)) + { Application_Model_Preference::SetHeadTitle($values["stationName"], $this->view); Application_Model_Preference::SetDefaultCrossfadeDuration($values["stationDefaultCrossfadeDuration"]); Application_Model_Preference::SetDefaultFadeIn($values["stationDefaultFadeIn"]); @@ -52,6 +48,11 @@ public function indexAction() Application_Model_Preference::SetDefaultTimezone($values["timezone"]); Application_Model_Preference::SetWeekStartDay($values["weekStartDay"]); + $logoUploadElement = $form->getSubForm('preferences_general')->getElement('stationLogo'); + $logoUploadElement->receive(); + $imagePath = $logoUploadElement->getFileName(); + Application_Model_Preference::SetStationLogo($imagePath); + Application_Model_Preference::SetEnableSystemEmail($values["enableSystemEmail"]); Application_Model_Preference::SetSystemEmail($values["systemEmail"]); Application_Model_Preference::SetMailServerConfigured($values["configureMailServer"]); @@ -73,12 +74,14 @@ public function indexAction() $this->view->statusMsg = "
". _("Preferences updated.")."
"; $this->view->form = $form; - $this->_helper->json->sendJson(array("valid"=>"true", "html"=>$this->view->render('preference/index.phtml'))); + //$this->_helper->json->sendJson(array("valid"=>"true", "html"=>$this->view->render('preference/index.phtml'))); } else { $this->view->form = $form; - $this->_helper->json->sendJson(array("valid"=>"false", "html"=>$this->view->render('preference/index.phtml'))); + //$this->_helper->json->sendJson(array("valid"=>"false", "html"=>$this->view->render('preference/index.phtml'))); } } + $this->view->logoImg = Application_Model_Preference::GetStationLogo(); + $this->view->form = $form; } @@ -111,13 +114,9 @@ public function supportSettingAction() Application_Model_Preference::SetSupportFeedback($values["SupportFeedback"]); Application_Model_Preference::SetPublicise($values["Publicise"]); - $form->Logo->receive(); - $imagePath = $form->Logo->getFileName(); - Application_Model_Preference::SetStationCountry($values["Country"]); Application_Model_Preference::SetStationCity($values["City"]); Application_Model_Preference::SetStationDescription($values["Description"]); - Application_Model_Preference::SetStationLogo($imagePath); if (isset($values["Privacy"])) { Application_Model_Preference::SetPrivacyPolicyCheck($values["Privacy"]); } @@ -125,10 +124,6 @@ public function supportSettingAction() $this->view->statusMsg = "
"._("Support setting updated.")."
"; } - $logo = Application_Model_Preference::GetStationLogo(); - if ($logo) { - $this->view->logoImg = $logo; - } $privacyChecked = false; if (Application_Model_Preference::GetPrivacyPolicyCheck() == 1) { $privacyChecked = true; diff --git a/airtime_mvc/application/forms/GeneralPreferences.php b/airtime_mvc/application/forms/GeneralPreferences.php index d956b8d1e8..52f14332a4 100644 --- a/airtime_mvc/application/forms/GeneralPreferences.php +++ b/airtime_mvc/application/forms/GeneralPreferences.php @@ -1,11 +1,14 @@ setEnctype(Zend_Form::ENCTYPE_MULTIPART); $notEmptyValidator = Application_Form_Helper_ValidationTypes::overrideNotEmptyValidator(); $rangeValidator = Application_Form_Helper_ValidationTypes::overrideBetweenValidator(0, 59.9); @@ -34,6 +37,18 @@ public function init() $stationDescription->setAttrib('rows', 4); $this->addElement($stationDescription); + // Station Logo + $stationLogoUpload = new Zend_Form_Element_File('stationLogo'); + $stationLogoUpload->setLabel(_('Station Logo:')) + ->setDescription(_("Note: Anything larger than 600x600 will be resized.")) + ->setRequired(false) + ->addValidator('Count', false, 1) + ->addValidator('Extension', false, 'jpg,jpeg,png,gif') + ->setMaxFileSize(1000000) + ->addFilter('ImageSize'); + $stationLogoUpload->setAttrib('accept', 'image/*'); + $this->addElement($stationLogoUpload); + //Default station crossfade duration $this->addElement('text', 'stationDefaultCrossfadeDuration', array( 'class' => 'input_text', diff --git a/airtime_mvc/application/forms/Preferences.php b/airtime_mvc/application/forms/Preferences.php index 977cae3550..7187c467c4 100644 --- a/airtime_mvc/application/forms/Preferences.php +++ b/airtime_mvc/application/forms/Preferences.php @@ -7,9 +7,6 @@ public function init() { $baseUrl = Application_Common_OsPath::getBaseDir(); - $this->setMethod('post'); - - $this->setDecorators(array( array('ViewScript', array('viewScript' => 'form/preferences.phtml')) )); @@ -31,5 +28,12 @@ public function init() $soundcloud_pref = new Application_Form_SoundcloudPreferences(); $this->addSubForm($soundcloud_pref, 'preferences_soundcloud'); + $submit = new Zend_Form_Element_Submit('submit'); + $submit->setLabel(_('Save')); + //$submit->removeDecorator('Label'); + $submit->setAttribs(array('class'=>'btn right-floated')); + $submit->removeDecorator('DtDdWrapper'); + + $this->addElement($submit); } } diff --git a/airtime_mvc/application/forms/SupportSettings.php b/airtime_mvc/application/forms/SupportSettings.php index 87e5588de8..0fbf0ccf7d 100644 --- a/airtime_mvc/application/forms/SupportSettings.php +++ b/airtime_mvc/application/forms/SupportSettings.php @@ -1,7 +1,5 @@ setAttrib('COLS','58'); $this->addElement($description); - // Station Logo - $upload = new Zend_Form_Element_File('Logo'); - $upload->setLabel(_('Station Logo:')) - ->setRequired(false) - ->setDecorators(array('File')) - ->addValidator('Count', false, 1) - ->addValidator('Extension', false, 'jpg,jpeg,png,gif') - ->addFilter('ImageSize'); - $upload->setAttrib('accept', 'image/*'); - $this->addElement($upload); - //enable support feedback $this->addElement('checkbox', 'SupportFeedback', array( 'label' => _('Send support feedback'), diff --git a/airtime_mvc/application/views/scripts/form/preferences.phtml b/airtime_mvc/application/views/scripts/form/preferences.phtml index afc324126d..53062036af 100644 --- a/airtime_mvc/application/views/scripts/form/preferences.phtml +++ b/airtime_mvc/application/views/scripts/form/preferences.phtml @@ -1,7 +1,7 @@
element->getElement('csrf') ?> + element->getSubform('preferences_general') ?> -

element->getSubform('preferences_email_server') ?> @@ -12,5 +12,7 @@
element->getSubform('preferences_soundcloud') ?>
+
+ element->submit->render() ?> diff --git a/airtime_mvc/application/views/scripts/form/preferences_general.phtml b/airtime_mvc/application/views/scripts/form/preferences_general.phtml index de3f6b13dd..7bf5d487d2 100644 --- a/airtime_mvc/application/views/scripts/form/preferences_general.phtml +++ b/airtime_mvc/application/views/scripts/form/preferences_general.phtml @@ -5,6 +5,10 @@ element->getElement('stationDescription')->render() ?> + element->getElement('stationLogo')->render() ?> + +
+ element->getElement('locale')->render() ?> element->getElement('timezone')->render() ?> diff --git a/airtime_mvc/application/views/scripts/form/support-setting.phtml b/airtime_mvc/application/views/scripts/form/support-setting.phtml index b1c0a3e379..7b164bdee8 100644 --- a/airtime_mvc/application/views/scripts/form/support-setting.phtml +++ b/airtime_mvc/application/views/scripts/form/support-setting.phtml @@ -143,26 +143,6 @@ -
- -
-
- element->getView()->logoImg){?> -
- - - element->getElement('Logo') ?> -
-

-
- element->getElement('Logo')->hasErrors()) : ?> -
    - element->getElement('Logo')->getMessages() as $error): ?> -
  • - -
- -
diff --git a/airtime_mvc/application/views/scripts/preference/index.phtml b/airtime_mvc/application/views/scripts/preference/index.phtml index 7d84200b4c..147cd1b99b 100644 --- a/airtime_mvc/application/views/scripts/preference/index.phtml +++ b/airtime_mvc/application/views/scripts/preference/index.phtml @@ -1,16 +1,15 @@

-
- - + + + form->getElement('submit')->render() ?>
- + statusMsg; echo $this->form; ?>
-
diff --git a/airtime_mvc/public/css/styles.css b/airtime_mvc/public/css/styles.css index a868e5df7a..f5442493da 100644 --- a/airtime_mvc/public/css/styles.css +++ b/airtime_mvc/public/css/styles.css @@ -2121,6 +2121,7 @@ span.errors.sp-errors{ } .preferences { width: 500px; + margin-bottom: 40px; } .manage-folders { width: 610px; diff --git a/airtime_mvc/public/js/airtime/preferences/preferences.js b/airtime_mvc/public/js/airtime/preferences/preferences.js index e774033d07..4f37d70339 100644 --- a/airtime_mvc/public/js/airtime/preferences/preferences.js +++ b/airtime_mvc/public/js/airtime/preferences/preferences.js @@ -103,7 +103,8 @@ $(document).ready(function() { $(this).toggleClass("closed"); return false; }).next().hide(); - + + /* No longer using AJAX for this form. Zend + our code makes it needlessly hard to deal with. -- Albert $('#pref_save').live('click', function() { var data = $('#pref_form').serialize(); var url = baseUrl+'Preference/index'; @@ -116,7 +117,7 @@ $(document).ready(function() { setConfigureMailServerListener(); setEnableSystemEmailsListener(); }); - }); + });*/ showErrorSections(); From 0ba5452e03a5d849e08f4b69b1c1e853ff86934f Mon Sep 17 00:00:00 2001 From: Albert Santoni Date: Tue, 27 Jan 2015 15:16:11 -0500 Subject: [PATCH 02/35] Log the SERVER_NAME too --- airtime_mvc/application/logging/Logging.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/airtime_mvc/application/logging/Logging.php b/airtime_mvc/application/logging/Logging.php index 91669647fe..6ca2cca84a 100644 --- a/airtime_mvc/application/logging/Logging.php +++ b/airtime_mvc/application/logging/Logging.php @@ -51,7 +51,7 @@ public static function info($p_msg) $function = $caller['function']; $logger = self::getLogger(); - $logger->info("[$file : $function() : line $line] - ".self::toString($p_msg)); + $logger->info($_SERVER['SERVER_NAME'] . " [$file : $function() : line $line] - ".self::toString($p_msg)); } public static function warn($p_msg) @@ -66,7 +66,7 @@ public static function warn($p_msg) $function = $caller['function']; $logger = self::getLogger(); - $logger->warn("[$file : $function() : line $line] - " + $logger->warn($_SERVER['SERVER_NAME'] . " [$file : $function() : line $line] - " . self::toString($p_msg)); } @@ -82,7 +82,7 @@ public static function error($p_msg) $function = $caller['function']; $logger = self::getLogger(); - $logger->err("[$file : $function() : line $line] - " + $logger->err($_SERVER['SERVER_NAME'] . " [$file : $function() : line $line] - " . self::toString($p_msg)); } @@ -102,7 +102,7 @@ public static function debug($p_msg) $function = $caller['function']; $logger = self::getLogger(); - $logger->debug("[$file : $function() : line $line] - ".self::toString($p_msg)); + $logger->debug($_SERVER['SERVER_NAME'] . " [$file : $function() : line $line] - ".self::toString($p_msg)); } // kind of like debug but for printing arrays more compactly (skipping // empty elements From 2b323400fc659a1d23a18f498eaddd10433e24ef Mon Sep 17 00:00:00 2001 From: Albert Santoni Date: Tue, 27 Jan 2015 15:39:21 -0500 Subject: [PATCH 03/35] Indentation and undefined variable fix in Block.php --- airtime_mvc/application/models/Block.php | 31 +++++++++++++----------- 1 file changed, 17 insertions(+), 14 deletions(-) diff --git a/airtime_mvc/application/models/Block.php b/airtime_mvc/application/models/Block.php index 4cb183569a..6a06060b88 100644 --- a/airtime_mvc/application/models/Block.php +++ b/airtime_mvc/application/models/Block.php @@ -1517,24 +1517,27 @@ public function getListofFilesMeetCriteria() $i++; } } - + // check if file exists $qry->add("file_exists", "true", Criteria::EQUAL); $qry->add("hidden", "false", Criteria::EQUAL); - if (isset($storedCrit['sort'])) { - $sortTracks = $storedCrit['sort']['value']; - } - if ($sortTracks == 'newest') { - $qry->addDescendingOrderByColumn('utime'); - } - else if ($sortTracks == 'oldest') { - $qry->addAscendingOrderByColumn('utime'); - } - else { - $qry->addAscendingOrderByColumn('random()'); - } + $sortTracks = 'random'; + if (isset($storedCrit['sort'])) { + $sortTracks = $storedCrit['sort']['value']; + } + if ($sortTracks == 'newest') { + $qry->addDescendingOrderByColumn('utime'); + } + else if ($sortTracks == 'oldest') { + $qry->addAscendingOrderByColumn('utime'); + } + else if ($sortTracks == 'random') { + $qry->addAscendingOrderByColumn('random()'); + } else { + Logging::warning("Unimplemented sortTracks type in ".__FILE__); + } - } + } // construct limit restriction $limits = array(); From e83c86a0ffe5de451939c79c71f9c99686d610e9 Mon Sep 17 00:00:00 2001 From: Albert Santoni Date: Tue, 27 Jan 2015 18:24:13 -0500 Subject: [PATCH 04/35] Refactored the logging class to reduce code, use error levels correctly, and improve performance. --- .../controllers/ScheduleController.php | 1 - airtime_mvc/application/logging/Logging.php | 73 ++++++++----------- airtime_mvc/public/index.php | 18 +++-- 3 files changed, 42 insertions(+), 50 deletions(-) diff --git a/airtime_mvc/application/controllers/ScheduleController.php b/airtime_mvc/application/controllers/ScheduleController.php index 99a17f19a7..6102c075f2 100644 --- a/airtime_mvc/application/controllers/ScheduleController.php +++ b/airtime_mvc/application/controllers/ScheduleController.php @@ -136,7 +136,6 @@ public function eventFeedPreloadAction() $editable = $user->isUserType(array(UTYPE_ADMIN, UTYPE_PROGRAM_MANAGER)); $calendar_interval = Application_Model_Preference::GetCalendarTimeScale(); - Logging::info($calendar_interval); if ($calendar_interval == "agendaDay") { list($start, $end) = Application_Model_Show::getStartEndCurrentDayView(); } else if ($calendar_interval == "agendaWeek") { diff --git a/airtime_mvc/application/logging/Logging.php b/airtime_mvc/application/logging/Logging.php index 6ca2cca84a..d49c94238d 100644 --- a/airtime_mvc/application/logging/Logging.php +++ b/airtime_mvc/application/logging/Logging.php @@ -38,52 +38,50 @@ public static function toString($p_msg) return $p_msg; } } + + /** @param debugMode Prints the function name, file, and line number. This is slow as it uses debug_backtrace() + * so don't use it unless you need it. + */ + private static function getLinePrefix($debugMode=false) + { + $linePrefix = ""; + + if (array_key_exists('SERVER_NAME', $_SERVER)) { + $linePrefix .= $_SERVER['SERVER_NAME'] . " "; + } + + if ($debugMode) { + //debug_backtrace is SLOW so we don't want this invoke unless there was a real error! (hence $debugMode) + $bt = debug_backtrace(); + $caller = $bt[1]; + $file = basename($caller['file']); + $line = $caller['line']; + $function = "Unknown function"; + if (array_key_exists(2, $bt)) { + $function = $bt[2]['function']; + } + $linePrefix .= "[$file:$line - $function()] - "; + } + + return $linePrefix; + } public static function info($p_msg) { - $bt = debug_backtrace(); - - $caller = array_shift($bt); - $file = basename($caller['file']); - $line = $caller['line']; - - $caller = array_shift($bt); - $function = $caller['function']; - $logger = self::getLogger(); - $logger->info($_SERVER['SERVER_NAME'] . " [$file : $function() : line $line] - ".self::toString($p_msg)); + $logger->info(self::getLinePrefix() . self::toString($p_msg)); } public static function warn($p_msg) { - $bt = debug_backtrace(); - - $caller = array_shift($bt); - $file = basename($caller['file']); - $line = $caller['line']; - - $caller = array_shift($bt); - $function = $caller['function']; - $logger = self::getLogger(); - $logger->warn($_SERVER['SERVER_NAME'] . " [$file : $function() : line $line] - " - . self::toString($p_msg)); + $logger->warn(self::getLinePrefix() . self::toString($p_msg)); } public static function error($p_msg) { - $bt = debug_backtrace(); - - $caller = array_shift($bt); - $file = basename($caller['file']); - $line = $caller['line']; - - $caller = array_shift($bt); - $function = $caller['function']; - $logger = self::getLogger(); - $logger->err($_SERVER['SERVER_NAME'] . " [$file : $function() : line $line] - " - . self::toString($p_msg)); + $logger->err(self::getLinePrefix(true) . self::toString($p_msg)); } public static function debug($p_msg) @@ -92,17 +90,8 @@ public static function debug($p_msg) return; } - $bt = debug_backtrace(); - - $caller = array_shift($bt); - $file = basename($caller['file']); - $line = $caller['line']; - - $caller = array_shift($bt); - $function = $caller['function']; - $logger = self::getLogger(); - $logger->debug($_SERVER['SERVER_NAME'] . " [$file : $function() : line $line] - ".self::toString($p_msg)); + $logger->debug(self::getLinePrefix(true) . self::toString($p_msg)); } // kind of like debug but for printing arrays more compactly (skipping // empty elements diff --git a/airtime_mvc/public/index.php b/airtime_mvc/public/index.php index 5fcfa36d7c..59a4054d74 100644 --- a/airtime_mvc/public/index.php +++ b/airtime_mvc/public/index.php @@ -74,15 +74,19 @@ function exception_error_handler($errno, $errstr, $errfile, $errline) $application->bootstrap()->run(); } } catch (Exception $e) { - echo $e->getMessage(); - echo "
";
-    echo $e->getTraceAsString();
-    echo "
"; - Logging::info($e->getMessage()); + + header($_SERVER['SERVER_PROTOCOL'] . ' 500 Internal Server Error', true, 500); + + Logging::error($e->getMessage()); if (VERBOSE_STACK_TRACE) { - Logging::info($e->getTraceAsString()); + echo $e->getMessage(); + echo "
";
+        echo $e->getTraceAsString();
+        echo "
"; + Logging::error($e->getTraceAsString()); } else { - Logging::info($e->getTrace()); + Logging::error($e->getTrace()); } + die(); } From 163227439c3aeec86de1a3ddc017c871721747db Mon Sep 17 00:00:00 2001 From: Albert Santoni Date: Tue, 27 Jan 2015 18:27:03 -0500 Subject: [PATCH 05/35] Raise exception again in index.php as alternative to die() * Backport from saas --- airtime_mvc/public/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airtime_mvc/public/index.php b/airtime_mvc/public/index.php index 59a4054d74..a82aceef85 100644 --- a/airtime_mvc/public/index.php +++ b/airtime_mvc/public/index.php @@ -87,6 +87,6 @@ function exception_error_handler($errno, $errstr, $errfile, $errline) } else { Logging::error($e->getTrace()); } - die(); + throw $e; } From df4bc01ff82c373f92f4a699862926cfdc324cb4 Mon Sep 17 00:00:00 2001 From: Albert Santoni Date: Mon, 2 Feb 2015 18:03:13 -0500 Subject: [PATCH 06/35] Log all PHP errors (including parse errors) to our zend log --- .../controllers/ShowbuilderController.php | 8 ++++ airtime_mvc/application/logging/Logging.php | 45 +++++++++++++++++++ airtime_mvc/public/index.php | 1 + 3 files changed, 54 insertions(+) diff --git a/airtime_mvc/application/controllers/ShowbuilderController.php b/airtime_mvc/application/controllers/ShowbuilderController.php index 9abbeb167a..189ef2aa81 100644 --- a/airtime_mvc/application/controllers/ShowbuilderController.php +++ b/airtime_mvc/application/controllers/ShowbuilderController.php @@ -283,6 +283,14 @@ public function scheduleAddAction() $mediaItems = $request->getParam("mediaIds", array()); $scheduledItems = $request->getParam("schedIds", array()); + $log_vars = array(); + $log_vars["url"] = $_SERVER['HTTP_HOST']; + $log_vars["action"] = "showbuilder/schedule-add"; + $log_vars["params"] = array(); + $log_vars["params"]["media_items"] = $mediaItems; + $log_vars["params"]["scheduled_items"] = $scheduledItems; + Logging::info($log_vars); + try { $scheduler = new Application_Model_Scheduler(); $scheduler->scheduleAfter($scheduledItems, $mediaItems); diff --git a/airtime_mvc/application/logging/Logging.php b/airtime_mvc/application/logging/Logging.php index d49c94238d..a32aa9410a 100644 --- a/airtime_mvc/application/logging/Logging.php +++ b/airtime_mvc/application/logging/Logging.php @@ -123,4 +123,49 @@ public static function disablePropelLogging() Propel::setLogger(null); } + public static function loggingShutdownCallback() + { + //Catch the types of errors that PHP doesn't normally let us catch and + //would otherwise log to the apache log. We route these to our Airtime log to improve the modularity + //and reliability of our error logging. (All errors are in one spot!) + $err = error_get_last(); + if (!is_array($err) || !array_key_exists('type', $err)) { + return; + } + + switch($err['type']) + { + case E_ERROR: + case E_PARSE: + case E_CORE_ERROR: + case E_CORE_WARNING: + case E_COMPILE_ERROR: + case E_COMPILE_WARNING: + //error_log("Oh noes, a fatal: " . var_export($err, true), 1, 'fatals@example.com'); + $errorStr = ''; + if (array_key_exists('message', $err)) { + $errorStr .= $err['message']; + } + if (array_key_exists('file', $err)) + { + $errorStr .= ' at ' .$err['file']; + } + if (array_key_exists('line', $err)) + { + $errorStr .= ':' . $err['line']; + } + + $errorStr .= "\n" . var_export($err, true); + Logging::error($errorStr); + break; + } + } + + public static function setupParseErrorLogging() + { + //Static callback: + register_shutdown_function('Logging::loggingShutdownCallback'); + } + } + diff --git a/airtime_mvc/public/index.php b/airtime_mvc/public/index.php index a82aceef85..e7a579ba38 100644 --- a/airtime_mvc/public/index.php +++ b/airtime_mvc/public/index.php @@ -63,6 +63,7 @@ function exception_error_handler($errno, $errstr, $errfile, $errline) require_once (APPLICATION_PATH."/logging/Logging.php"); Logging::setLogPath('/var/log/airtime/zendphp.log'); +Logging::setupParseErrorLogging(); // Create application, bootstrap, and run try { From cd994c0928a835c04463400f3dad725abfbfb7b5 Mon Sep 17 00:00:00 2001 From: localizer Date: Thu, 5 Feb 2015 10:32:16 +0000 Subject: [PATCH 07/35] updated translation resources --- airtime_mvc/locale/az/LC_MESSAGES/airtime.mo | Bin 474 -> 474 bytes airtime_mvc/locale/az/LC_MESSAGES/airtime.po | 2 +- .../locale/de_AT/LC_MESSAGES/airtime.mo | Bin 63465 -> 63465 bytes .../locale/de_AT/LC_MESSAGES/airtime.po | 2 +- .../locale/en_GB/LC_MESSAGES/airtime.mo | Bin 61416 -> 61416 bytes .../locale/en_GB/LC_MESSAGES/airtime.po | 2 +- .../locale/hy_AM/LC_MESSAGES/airtime.mo | Bin 487 -> 487 bytes .../locale/hy_AM/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/ka/LC_MESSAGES/airtime.mo | Bin 464 -> 464 bytes airtime_mvc/locale/ka/LC_MESSAGES/airtime.po | 2 +- .../locale/pt_BR/LC_MESSAGES/airtime.mo | Bin 57870 -> 57870 bytes .../locale/pt_BR/LC_MESSAGES/airtime.po | 2 +- 12 files changed, 6 insertions(+), 6 deletions(-) diff --git a/airtime_mvc/locale/az/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/az/LC_MESSAGES/airtime.mo index b09021a2cd7ca24e2c43ed84e510451d25726d9a..11418ce7c4c877e221ed1499e0fc8271a020a80d 100644 GIT binary patch delta 20 bcmcb`e2aO)T23Qf15*V<11sZ=+f*0\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/airtime/language/az/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.mo index e07f4df00d62c69e88f6918ad5c9bef1c4b42c01..80674795acda31540b5a6f803f59320bedaf5238 100644 GIT binary patch delta 24 gcmaF)p84f_<_#Ywa~kOym?{_=SQ&5rHTiuq0F(0zH~;_u delta 24 gcmaF)p84f_<_#Ywa~kRznkpC?S{ZKsHTiuq0F&(tHvj+t diff --git a/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po b/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po index dea02c8d1f..90e9411cd9 100644 --- a/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-01-15 11:11+0000\n" +"PO-Revision-Date: 2015-02-05 10:31+0000\n" "Last-Translator: Daniel James \n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/airtime/language/de_AT/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.mo index 9e6d68da7a2bd014a4d42e6073f3d529c265e89e..12c491259d944cd80e6727c6e1ded861552c03a4 100644 GIT binary patch delta 24 gcmaEHpZUdo<_-C?IE{1-Oce|btc*8T%qj>40EOiVlK=n! delta 24 gcmaEHpZUdo<_-C?I1P0TO%)6ctqeC;%qj>40EOQPk^lez diff --git a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po index 753cb7f968..73aaaff7c4 100644 --- a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-01-15 11:11+0000\n" +"PO-Revision-Date: 2015-02-05 10:31+0000\n" "Last-Translator: Daniel James \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/airtime/language/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.mo index 76a62ff71e4bd1b49eb96584e1ba089694036b22..2ea020a6ca8e2677ce382447afbfe276cea2a5dd 100644 GIT binary patch delta 20 bcmaFP{G55hT23Qf15*V<11sZ=+YA{2O3wyn delta 20 bcmaFP{G55hT24b\n" "Language-Team: Armenian (Armenia) (http://www.transifex.com/projects/p/airtime/language/hy_AM/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/ka/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/ka/LC_MESSAGES/airtime.mo index 6411fcaf96f5f070c16601edcee0a9c4c00ee534..6bb24bf3a16258f6c7c55c7e03ad954e4530d6b2 100644 GIT binary patch delta 20 bcmcb>e1UnwT23Qf15*V<11sZ=+oTu)M>hr` delta 20 bcmcb>e1UnwT24b\n" "Language-Team: Georgian (http://www.transifex.com/projects/p/airtime/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.mo index 8267a2179c9002fa86dd0f88c31914aa714f8b1f..7d9709a5617904f05223be058d0b892d8d06cae2 100644 GIT binary patch delta 24 fcmeA>!rXU+d4op>r;)CKse++_mGS1lj=hlpZJ!8; delta 24 fcmeA>!rXU+d4op>r=hN)se+-QmEq>Vj=hlpZJ7v% diff --git a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po index f71c908812..6bc0006023 100644 --- a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-01-15 11:11+0000\n" +"PO-Revision-Date: 2015-02-05 10:31+0000\n" "Last-Translator: Felipe Thomaz Pedroni\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/airtime/language/pt_BR/)\n" "MIME-Version: 1.0\n" From ebf2b49108291f9847f365f0d885b84a9757a582 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Wed, 18 Feb 2015 11:02:36 +0000 Subject: [PATCH 08/35] Removed obsolete localization files, now in hy_AM --- airtime_mvc/locale/hy/LC_MESSAGES/airtime.mo | Bin 427 -> 0 bytes airtime_mvc/locale/hy/LC_MESSAGES/airtime.po | 4332 ------------------ 2 files changed, 4332 deletions(-) delete mode 100644 airtime_mvc/locale/hy/LC_MESSAGES/airtime.mo delete mode 100644 airtime_mvc/locale/hy/LC_MESSAGES/airtime.po diff --git a/airtime_mvc/locale/hy/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/hy/LC_MESSAGES/airtime.mo deleted file mode 100644 index 86b6b14246818440b19fcd4d5b1d3719b7a9c178..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 427 zcmYLEO;5r=5XI=JN6#MC!~;Z^Z3)p*tkLk1U?dV#y|3*+*R;EJcM$j?{yl$-Qy}n? zm)&{$X7t-|}X#zt%?wSs~@ z%Mu*B&$iX$ZP(#4Q>LAo@_~BvVksBE6Objvuq9|EHEZUGRV2h}wQ6HMQq5sqw}@(& z-ib=cU1(A4hlqS5THbUr9UT`7+P*h18bMRGO-1`4tWi{jRJza7Tv`Vhzb9iJ9)0zP zbFh4*Q7`T3? diff --git a/airtime_mvc/locale/hy/LC_MESSAGES/airtime.po b/airtime_mvc/locale/hy/LC_MESSAGES/airtime.po deleted file mode 100644 index c7785628d2..0000000000 --- a/airtime_mvc/locale/hy/LC_MESSAGES/airtime.po +++ /dev/null @@ -1,4332 +0,0 @@ -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Airtime\n" -"POT-Creation-Date: \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" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -# ENGLISH (en) original strings for Airtime. -# Copyright (C) 2014 Sourcefabric z.ú. -# This file is distributed under the same license as the Airtime package. -# -#: airtime_mvc/application/layouts/scripts/login.phtml:16 -#, php-format -msgid "" -"Airtime Copyright ©Sourcefabric o.p.s. All rights reserved.%sMaintained" -" and distributed under GNU GPL v.3 by %sSourcefabric o.p.s%s" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/bare.phtml:5 -#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2 -#: airtime_mvc/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/audio-player.phtml:5 -#: airtime_mvc/application/controllers/LocaleController.php:30 -msgid "Audio Player" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:27 -#: airtime_mvc/application/layouts/scripts/layout.phtml:38 -msgid "Logout" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:42 -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -#: airtime_mvc/application/layouts/scripts/layout.phtml:53 -#: airtime_mvc/application/layouts/scripts/layout.phtml:79 -msgid "Play" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:43 -#: airtime_mvc/application/layouts/scripts/layout.phtml:69 -#: airtime_mvc/application/layouts/scripts/layout.phtml:54 -#: airtime_mvc/application/layouts/scripts/layout.phtml:80 -msgid "Stop" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:47 -#: airtime_mvc/application/models/Block.php:1347 -#: airtime_mvc/application/controllers/LocaleController.php:272 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 -#: airtime_mvc/application/layouts/scripts/layout.phtml:58 -msgid "Cue In" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:49 -#: airtime_mvc/application/layouts/scripts/layout.phtml:60 -msgid "Set Cue In" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:54 -#: airtime_mvc/application/models/Block.php:1348 -#: airtime_mvc/application/controllers/LocaleController.php:273 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:56 -#: airtime_mvc/application/layouts/scripts/layout.phtml:65 -msgid "Cue Out" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:56 -#: airtime_mvc/application/layouts/scripts/layout.phtml:67 -msgid "Set Cue Out" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -#: airtime_mvc/application/layouts/scripts/layout.phtml:84 -msgid "Cursor" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:74 -#: airtime_mvc/application/controllers/LocaleController.php:274 -#: airtime_mvc/application/layouts/scripts/layout.phtml:85 -msgid "Fade In" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:75 -#: airtime_mvc/application/controllers/LocaleController.php:275 -#: airtime_mvc/application/layouts/scripts/layout.phtml:86 -msgid "Fade Out" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1105 -#: airtime_mvc/application/services/HistoryService.php:1145 -#: airtime_mvc/application/services/HistoryService.php:1162 -#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: airtime_mvc/application/models/Block.php:1363 -#: airtime_mvc/application/controllers/LocaleController.php:66 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:71 -#: airtime_mvc/application/services/HistoryService.php:1108 -#: airtime_mvc/application/services/HistoryService.php:1148 -#: airtime_mvc/application/services/HistoryService.php:1165 -msgid "Title" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1106 -#: airtime_mvc/application/services/HistoryService.php:1146 -#: airtime_mvc/application/services/HistoryService.php:1163 -#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: airtime_mvc/application/models/Block.php:1349 -#: airtime_mvc/application/controllers/LocaleController.php:67 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 -#: airtime_mvc/application/services/HistoryService.php:1109 -#: airtime_mvc/application/services/HistoryService.php:1149 -#: airtime_mvc/application/services/HistoryService.php:1166 -msgid "Creator" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1107 -#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: airtime_mvc/application/models/Block.php:1341 -#: airtime_mvc/application/controllers/LocaleController.php:68 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:49 -#: airtime_mvc/application/services/HistoryService.php:1110 -msgid "Album" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1108 -#: airtime_mvc/application/services/HistoryService.php:1165 -#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: airtime_mvc/application/models/Block.php:1357 -#: airtime_mvc/application/controllers/LocaleController.php:81 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:65 -#: airtime_mvc/application/services/HistoryService.php:1111 -#: airtime_mvc/application/services/HistoryService.php:1168 -msgid "Length" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1109 -#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: airtime_mvc/application/models/Block.php:1351 -#: airtime_mvc/application/controllers/LocaleController.php:75 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:132 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/services/HistoryService.php:1112 -msgid "Genre" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1110 -#: airtime_mvc/application/models/Block.php:1359 -#: airtime_mvc/application/controllers/LocaleController.php:83 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:67 -#: airtime_mvc/application/services/HistoryService.php:1113 -msgid "Mood" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1111 -#: airtime_mvc/application/models/Block.php:1353 -#: airtime_mvc/application/controllers/LocaleController.php:77 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:61 -#: airtime_mvc/application/services/HistoryService.php:1114 -msgid "Label" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1112 -#: airtime_mvc/application/services/HistoryService.php:1166 -#: airtime_mvc/application/models/Block.php:1344 -#: airtime_mvc/application/controllers/LocaleController.php:71 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/services/HistoryService.php:1115 -#: airtime_mvc/application/services/HistoryService.php:1169 -msgid "Composer" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1113 -#: airtime_mvc/application/models/Block.php:1352 -#: airtime_mvc/application/controllers/LocaleController.php:76 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:60 -#: airtime_mvc/application/services/HistoryService.php:1116 -msgid "ISRC" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1114 -#: airtime_mvc/application/services/HistoryService.php:1167 -#: airtime_mvc/application/models/Block.php:1346 -#: airtime_mvc/application/controllers/LocaleController.php:73 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:54 -#: airtime_mvc/application/services/HistoryService.php:1117 -#: airtime_mvc/application/services/HistoryService.php:1170 -msgid "Copyright" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1115 -#: airtime_mvc/application/models/Block.php:1367 -#: airtime_mvc/application/controllers/LocaleController.php:90 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:75 -#: airtime_mvc/application/services/HistoryService.php:1118 -msgid "Year" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1116 -#: airtime_mvc/application/services/HistoryService.php:1119 -msgid "Track" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1117 -#: airtime_mvc/application/models/Block.php:1345 -#: airtime_mvc/application/controllers/LocaleController.php:72 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:53 -#: airtime_mvc/application/services/HistoryService.php:1120 -msgid "Conductor" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1118 -#: airtime_mvc/application/models/Block.php:1354 -#: airtime_mvc/application/controllers/LocaleController.php:78 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:62 -#: airtime_mvc/application/services/HistoryService.php:1121 -msgid "Language" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1143 -#: airtime_mvc/application/forms/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1146 -msgid "Start Time" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1144 -#: airtime_mvc/application/forms/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1147 -msgid "End Time" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1164 -#: airtime_mvc/application/services/HistoryService.php:1167 -msgid "Played" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:65 -#: airtime_mvc/application/controllers/LibraryController.php:282 -#: airtime_mvc/application/controllers/LibraryController.php:280 -msgid "View on Soundcloud" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:70 -#: airtime_mvc/application/controllers/LibraryController.php:288 -#: airtime_mvc/application/controllers/LibraryController.php:286 -msgid "Upload to SoundCloud" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:70 -#: airtime_mvc/application/controllers/LibraryController.php:286 -#: airtime_mvc/application/controllers/LibraryController.php:284 -msgid "Re-upload to SoundCloud" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:77 -#: airtime_mvc/application/services/CalendarService.php:121 -#: airtime_mvc/application/services/CalendarService.php:120 -msgid "Show Content" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:93 -#: airtime_mvc/application/services/CalendarService.php:100 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:15 -#: airtime_mvc/application/controllers/LocaleController.php:303 -#: airtime_mvc/application/services/CalendarService.php:96 -msgid "Add / Remove Content" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:111 -#: airtime_mvc/application/services/CalendarService.php:109 -msgid "Remove All Content" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:131 -#: airtime_mvc/application/services/CalendarService.php:135 -#: airtime_mvc/application/services/CalendarService.php:130 -#: airtime_mvc/application/services/CalendarService.php:134 -msgid "Cancel Current Show" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:152 -#: airtime_mvc/application/services/CalendarService.php:167 -#: airtime_mvc/application/services/CalendarService.php:151 -#: airtime_mvc/application/services/CalendarService.php:166 -msgid "Edit This Instance" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:157 -#: airtime_mvc/application/controllers/LibraryController.php:241 -#: airtime_mvc/application/controllers/LibraryController.php:263 -#: airtime_mvc/application/controllers/LibraryController.php:239 -#: airtime_mvc/application/controllers/LibraryController.php:261 -#: airtime_mvc/application/services/CalendarService.php:156 -msgid "Edit" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:162 -#: airtime_mvc/application/services/CalendarService.php:173 -#: airtime_mvc/application/services/CalendarService.php:161 -#: airtime_mvc/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:186 -#: airtime_mvc/application/services/CalendarService.php:201 -#: airtime_mvc/application/services/CalendarService.php:206 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:19 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:30 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:27 -#: airtime_mvc/application/controllers/LibraryController.php:217 -#: airtime_mvc/application/controllers/LibraryController.php:246 -#: airtime_mvc/application/controllers/LibraryController.php:265 -#: airtime_mvc/application/controllers/ShowbuilderController.php:202 -#: airtime_mvc/application/controllers/LibraryController.php:215 -#: airtime_mvc/application/controllers/LibraryController.php:244 -#: airtime_mvc/application/controllers/LibraryController.php:263 -#: airtime_mvc/application/controllers/ShowbuilderController.php:210 -#: airtime_mvc/application/services/CalendarService.php:185 -#: airtime_mvc/application/services/CalendarService.php:200 -#: airtime_mvc/application/services/CalendarService.php:205 -msgid "Delete" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:191 -#: airtime_mvc/application/services/CalendarService.php:190 -msgid "Delete This Instance" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:196 -#: airtime_mvc/application/services/CalendarService.php:195 -msgid "Delete This Instance and All Following" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:250 -#: airtime_mvc/application/services/CalendarService.php:249 -msgid "Permission denied" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:254 -#: airtime_mvc/application/services/CalendarService.php:253 -msgid "Can't drag and drop repeating shows" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:263 -#: airtime_mvc/application/services/CalendarService.php:262 -msgid "Can't move a past show" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:281 -#: airtime_mvc/application/services/CalendarService.php:297 -msgid "Can't move show into past" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:288 -#: airtime_mvc/application/forms/AddShowWhen.php:280 -#: airtime_mvc/application/forms/AddShowWhen.php:294 -#: airtime_mvc/application/forms/AddShowWhen.php:318 -#: airtime_mvc/application/forms/AddShowWhen.php:324 -#: airtime_mvc/application/forms/AddShowWhen.php:329 -#: airtime_mvc/application/forms/AddShowWhen.php:274 -#: airtime_mvc/application/forms/AddShowWhen.php:288 -#: airtime_mvc/application/services/CalendarService.php:304 -msgid "Cannot schedule overlapping shows" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:301 -#: airtime_mvc/application/services/CalendarService.php:317 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:311 -#: airtime_mvc/application/services/CalendarService.php:327 -msgid "Show was deleted because recorded show does not exist!" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:318 -#: airtime_mvc/application/services/CalendarService.php:334 -msgid "Must wait 1 hour to rebroadcast." -msgstr "" - -#: airtime_mvc/application/views/scripts/preference/index.phtml:2 -#: airtime_mvc/application/configs/navigation.php:45 -msgid "Preferences" -msgstr "" - -#: airtime_mvc/application/views/scripts/preference/index.phtml:6 -#: airtime_mvc/application/views/scripts/preference/index.phtml:14 -#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:6 -#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:115 -#: airtime_mvc/application/views/scripts/form/edit-user.phtml:160 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:16 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:27 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:24 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: airtime_mvc/application/controllers/LocaleController.php:285 -#: airtime_mvc/application/forms/AddUser.php:106 -#: airtime_mvc/application/forms/SupportSettings.php:158 -#: airtime_mvc/application/forms/EditHistory.php:131 -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/forms/EditAudioMD.php:182 -#: airtime_mvc/application/forms/BillingClient.php:193 -#: airtime_mvc/application/forms/SupportSettings.php:143 -#: airtime_mvc/application/views/scripts/form/edit-user.phtml:161 -msgid "Save" -msgstr "" - -#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2 -#: airtime_mvc/application/controllers/LocaleController.php:156 -msgid "Manage Media Folders" -msgstr "" - -#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "" - -#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:12 -msgid "Global Settings" -msgstr "" - -#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:87 -msgid "dB" -msgstr "" - -#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Stream Settings" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -msgid "Add" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43 -msgid "" -"Rescan watched directory (This is useful if it is network mount and may be " -"out of sync with Airtime)" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:50 -msgid "You are not watching any media folders." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1 -msgid "Register Airtime" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6 -#, php-format -msgid "" -"Help Airtime improve by letting us know how you are using it. This info will" -" be collected regularly in order to enhance your user experience.%sClick " -"'Yes, help Airtime' and we'll make sure the features you use are constantly " -"improving." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:25 -#, php-format -msgid "" -"Click the box below to advertise your station on %sSourcefabric.org%s. In " -"order to promote your station, 'Send support feedback' must be enabled. This" -" data will be collected in addition to the support feedback." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:47 -#: airtime_mvc/application/views/scripts/form/preferences_email_server.phtml:44 -#: airtime_mvc/application/views/scripts/form/preferences_email_server.phtml:74 -#: airtime_mvc/application/views/scripts/form/preferences_email_server.phtml:90 -#: airtime_mvc/application/views/scripts/form/preferences_general.phtml:97 -#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46 -#: airtime_mvc/application/views/scripts/form/preferences_soundcloud.phtml:44 -#: airtime_mvc/application/views/scripts/form/preferences_soundcloud.phtml:59 -#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:34 -#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:48 -#: airtime_mvc/application/views/scripts/form/preferences_soundcloud.phtml:31 -#: airtime_mvc/application/views/scripts/form/preferences_soundcloud.phtml:46 -#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5 -#: airtime_mvc/application/views/scripts/form/preferences_general.phtml:115 -msgid "(Required)" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:65 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:79 -#: airtime_mvc/application/views/scripts/form/support-setting.phtml:61 -#: airtime_mvc/application/views/scripts/form/support-setting.phtml:76 -#: airtime_mvc/application/views/scripts/form/support-setting.phtml:20 -#: airtime_mvc/application/views/scripts/form/support-setting.phtml:35 -msgid "(for verification purposes only, will not be published)" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:150 -#: airtime_mvc/application/views/scripts/form/support-setting.phtml:151 -#: airtime_mvc/application/views/scripts/form/support-setting.phtml:110 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:164 -#: airtime_mvc/application/views/scripts/form/support-setting.phtml:164 -msgid "Show me what I am sending " -msgstr "" - -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:178 -msgid "Terms and Conditions" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:12 -msgid "Filter By Show:" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/login.phtml:34 -#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3 -msgid "Reset password" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:3 -msgid "Smart Block Options" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:39 -msgid "or" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:40 -msgid "and" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:63 -msgid " to " -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:120 -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:133 -msgid "files meet the criteria" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:127 -msgid "file meet the criteria" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:53 -msgid "Connection URL: " -msgstr "" - -#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5 -#, php-format -msgid "" -"Help Airtime improve by letting Sourcefabric know how you are using it. This" -" information will be collected regularly in order to enhance your user " -"experience.%sClick the 'Send support feedback' box and we'll make sure the " -"features you use are constantly improving." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/support-setting.phtml:23 -#, php-format -msgid "Click the box below to promote your station on %sSourcefabric.org%s." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/support-setting.phtml:41 -msgid "" -"(In order to promote your station, 'Send support feedback' must be enabled)." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/support-setting.phtml:186 -msgid "Sourcefabric Privacy Policy" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:2 -msgid "Input Stream Settings" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:109 -#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:81 -msgid "Master Source Connection URL:" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:115 -#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:159 -msgid "Override" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:120 -#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:164 -#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:87 -#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:98 -msgid "OK" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:120 -#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:164 -#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:87 -#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:98 -msgid "RESET" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:153 -#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:92 -msgid "Show Source Connection URL:" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18 -msgid "Remove" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/preferences.phtml:5 -msgid "Email / Mail Server Settings" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/preferences.phtml:10 -#: airtime_mvc/application/views/scripts/form/preferences.phtml:5 -msgid "SoundCloud Settings" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1 -#, php-format -msgid "%s's Settings" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53 -#: airtime_mvc/application/controllers/LocaleController.php:391 -#: airtime_mvc/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "" - -#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:77 -msgid "Additional Options" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:137 -msgid "" -"The following info will be displayed to listeners in their media player:" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:170 -msgid "(Your radio station website)" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:208 -msgid "Stream URL: " -msgstr "" - -#: airtime_mvc/application/views/scripts/form/daterange.phtml:6 -msgid "Filter History" -msgstr "" - -#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3 -msgid "Welcome to Airtime!" -msgstr "" - -#: airtime_mvc/application/views/scripts/dashboard/help.phtml:4 -msgid "" -"Here's how you can get started using Airtime to automate your broadcasts: " -msgstr "" - -#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7 -msgid "" -"Begin by adding your files to the library using the 'Add Media' menu button." -" You can drag and drop your files to this window too." -msgstr "" - -#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8 -msgid "" -"Create a show by going to 'Calendar' in the menu bar, and then clicking the " -"'+ Show' icon. This can be either a one-time or repeating show. Only admins " -"and program managers can add shows." -msgstr "" - -#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9 -msgid "" -"Add media to the show by going to your show in the Schedule calendar, left-" -"clicking on it and selecting 'Add / Remove Content'" -msgstr "" - -#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10 -msgid "" -"Select your media from the left pane and drag them to your show in the right" -" pane." -msgstr "" - -#: airtime_mvc/application/views/scripts/dashboard/help.phtml:12 -msgid "Then you're good to go!" -msgstr "" - -#: airtime_mvc/application/views/scripts/dashboard/help.phtml:13 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "" - -#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2 -#: airtime_mvc/application/configs/navigation.php:130 -msgid "About" -msgstr "" - -#: airtime_mvc/application/views/scripts/dashboard/about.phtml:5 -#, php-format -msgid "" -"%sAirtime%s %s, the open radio software for scheduling and remote station " -"management. %s" -msgstr "" - -#: airtime_mvc/application/views/scripts/dashboard/about.phtml:13 -#, php-format -msgid "" -"%sSourcefabric%s o.p.s. Airtime is distributed under the %sGNU GPL v.3%s" -msgstr "" - -#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "" - -#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "" - -#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90 -#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60 -msgid "mute" -msgstr "" - -#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91 -#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63 -msgid "unmute" -msgstr "" - -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -#: airtime_mvc/application/forms/Login.php:65 -msgid "Login" -msgstr "" - -#: airtime_mvc/application/views/scripts/login/index.phtml:7 -msgid "" -"Welcome to the online Airtime demo! You can log in using the username " -"'admin' and the password 'admin'." -msgstr "" - -#: airtime_mvc/application/views/scripts/login/password-restore.phtml:7 -msgid "" -"Please enter your account e-mail address. You will receive a link to create " -"a new password via e-mail." -msgstr "" - -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email sent" -msgstr "" - -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6 -msgid "An email has been sent" -msgstr "" - -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:7 -msgid "Back to login screen" -msgstr "" - -#: airtime_mvc/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "" - -#: airtime_mvc/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "" - -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3 -msgid "Your trial expires in" -msgstr "" - -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "" - -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9 -msgid "Purchase your copy of Airtime" -msgstr "" - -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9 -msgid "My Account" -msgstr "" - -#: airtime_mvc/application/views/scripts/partialviews/header.phtml:3 -msgid "Previous:" -msgstr "" - -#: airtime_mvc/application/views/scripts/partialviews/header.phtml:10 -msgid "Next:" -msgstr "" - -#: airtime_mvc/application/views/scripts/partialviews/header.phtml:24 -msgid "Source Streams" -msgstr "" - -#: airtime_mvc/application/views/scripts/partialviews/header.phtml:29 -msgid "Master Source" -msgstr "" - -#: airtime_mvc/application/views/scripts/partialviews/header.phtml:38 -msgid "Show Source" -msgstr "" - -#: airtime_mvc/application/views/scripts/partialviews/header.phtml:45 -msgid "Scheduled Play" -msgstr "" - -#: airtime_mvc/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "" - -#: airtime_mvc/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "" - -#: airtime_mvc/application/views/scripts/partialviews/header.phtml:59 -msgid "Station time" -msgstr "" - -#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3 -#: airtime_mvc/application/controllers/LocaleController.php:353 -#: airtime_mvc/application/controllers/LocaleController.php:381 -msgid "Close" -msgstr "" - -#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6 -#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:40 -#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:34 -msgid "Add this show" -msgstr "" - -#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6 -#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:40 -#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:34 -msgid "Update show" -msgstr "" - -#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "" - -#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "" - -#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:19 -msgid "Live Stream Input" -msgstr "" - -#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:23 -msgid "Record & Rebroadcast" -msgstr "" - -#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:29 -#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:23 -msgid "Who" -msgstr "" - -#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:33 -#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:27 -msgid "Style" -msgstr "" - -#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: airtime_mvc/application/controllers/LocaleController.php:264 -msgid "Start" -msgstr "" - -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:4 -msgid "Service" -msgstr "" - -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:5 -#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:8 -#: airtime_mvc/application/controllers/LocaleController.php:363 -#: airtime_mvc/application/controllers/LocaleController.php:364 -#: airtime_mvc/application/configs/navigation.php:76 -msgid "Status" -msgstr "" - -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:6 -msgid "Uptime" -msgstr "" - -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:7 -msgid "CPU" -msgstr "" - -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:8 -msgid "Memory" -msgstr "" - -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:14 -msgid "Airtime Version" -msgstr "" - -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -msgid "Disk Space" -msgstr "" - -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:3 -#: airtime_mvc/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "" - -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:5 -#: airtime_mvc/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "" - -#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listener Count Over Time" -msgstr "" - -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:5 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:11 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:11 -msgid "New" -msgstr "" - -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:14 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:14 -msgid "New Playlist" -msgstr "" - -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:9 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:15 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:15 -msgid "New Smart Block" -msgstr "" - -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:10 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:16 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:16 -msgid "New Webstream" -msgstr "" - -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:39 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:53 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:55 -msgid "View / edit description" -msgstr "" - -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:41 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:55 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:57 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:162 -msgid "Description" -msgstr "" - -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:52 -msgid "Stream URL:" -msgstr "" - -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:57 -msgid "Default Length:" -msgstr "" - -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:64 -msgid "No webstream" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:21 -msgid "Empty playlist content" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:21 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:21 -msgid "Clear" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:24 -msgid "Shuffle playlist" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:24 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:334 -msgid "Shuffle" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:27 -msgid "Save playlist" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:34 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:31 -msgid "Playlist crossfade" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:67 -#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:72 -msgid "Fade in: " -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:70 -#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:75 -msgid "Fade out: " -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:85 -msgid "No open playlist" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3 -#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6 -#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:72 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:75 -msgid "(ss.t)" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:21 -msgid "Empty smart block content" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:90 -msgid "No open smart block" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5 -#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:54 -msgid "Expand Static Block" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:59 -msgid "Expand Dynamic Block" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:135 -msgid "Empty smart block" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:137 -msgid "Empty playlist" -msgstr "" - -#: airtime_mvc/application/views/scripts/error/error.phtml:6 -msgid "Zend Framework Default Application" -msgstr "" - -#: airtime_mvc/application/views/scripts/error/error.phtml:10 -msgid "Page not found!" -msgstr "" - -#: airtime_mvc/application/views/scripts/error/error.phtml:11 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "" - -#: airtime_mvc/application/views/scripts/error/error.phtml:13 -#: airtime_mvc/application/configs/navigation.php:113 -msgid "Help" -msgstr "" - -#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "" - -#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "" - -#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "" - -#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "" - -#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "" - -#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "" - -#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "" - -#: airtime_mvc/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 "" - -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" -msgstr "" - -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "" - -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:153 -msgid "Name" -msgstr "" - -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "" - -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "" - -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "" - -#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:4 -msgid "Log Sheet Templates" -msgstr "" - -#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:7 -msgid "No Log Sheet Templates" -msgstr "" - -#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:25 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:56 -#: airtime_mvc/application/controllers/LocaleController.php:388 -msgid "Set Default" -msgstr "" - -#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:31 -msgid "New Log Sheet Template" -msgstr "" - -#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:35 -msgid "File Summary Templates" -msgstr "" - -#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:38 -msgid "No File Summary Templates" -msgstr "" - -#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:62 -msgid "New File Summary Template" -msgstr "" - -#: airtime_mvc/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "" - -#: airtime_mvc/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "" - -#: airtime_mvc/application/views/scripts/user/add-user.phtml:17 -msgid "id" -msgstr "" - -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -#: airtime_mvc/application/forms/PasswordRestore.php:25 -msgid "Username" -msgstr "" - -#: airtime_mvc/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "" - -#: airtime_mvc/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "" - -#: airtime_mvc/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/forms/EditAudioMD.php:19 -#: airtime_mvc/application/forms/EditAudioMD.php:25 -msgid "Title:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148 -#: airtime_mvc/application/forms/EditAudioMD.php:26 -#: airtime_mvc/application/forms/EditAudioMD.php:40 -msgid "Creator:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: airtime_mvc/application/forms/EditAudioMD.php:33 -#: airtime_mvc/application/forms/EditAudioMD.php:50 -msgid "Album:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -#: airtime_mvc/application/forms/EditAudioMD.php:40 -msgid "Track:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147 -msgid "Length:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:67 -msgid "Bit Rate:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: airtime_mvc/application/forms/EditAudioMD.php:88 -#: airtime_mvc/application/forms/EditAudioMD.php:121 -msgid "Mood:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: airtime_mvc/application/forms/AddShowWhat.php:45 -#: airtime_mvc/application/forms/EditAudioMD.php:47 -#: airtime_mvc/application/forms/EditAudioMD.php:68 -msgid "Genre:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: airtime_mvc/application/forms/EditAudioMD.php:55 -#: airtime_mvc/application/forms/EditAudioMD.php:78 -msgid "Year:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: airtime_mvc/application/forms/EditAudioMD.php:67 -#: airtime_mvc/application/forms/EditAudioMD.php:91 -msgid "Label:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: airtime_mvc/application/forms/EditAudioMD.php:96 -#: airtime_mvc/application/forms/EditAudioMD.php:131 -msgid "BPM:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: airtime_mvc/application/forms/EditAudioMD.php:74 -#: airtime_mvc/application/forms/EditAudioMD.php:101 -msgid "Composer:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: airtime_mvc/application/forms/EditAudioMD.php:81 -#: airtime_mvc/application/forms/EditAudioMD.php:111 -msgid "Conductor:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/forms/EditAudioMD.php:141 -msgid "Copyright:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: airtime_mvc/application/forms/EditAudioMD.php:119 -#: airtime_mvc/application/forms/EditAudioMD.php:161 -msgid "Website:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -#: airtime_mvc/application/forms/Login.php:48 -#: airtime_mvc/application/forms/EditUser.php:114 -#: airtime_mvc/application/forms/EditAudioMD.php:126 -#: airtime_mvc/application/forms/EditAudioMD.php:171 -msgid "Language:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "File Path:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146 -#: airtime_mvc/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: airtime_mvc/application/forms/AddShowWhat.php:54 -msgid "Description:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45 -msgid "Web Stream" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46 -msgid "Dynamic Smart Block" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47 -msgid "Static Smart Block" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Audio Track" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63 -msgid "Playlist Contents: " -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65 -msgid "Static Smart Block Contents: " -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104 -msgid "Dynamic Smart Block Criteria: " -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137 -msgid "Limit to " -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -#: airtime_mvc/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:7 -msgid "Log Sheet" -msgstr "" - -#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8 -msgid "File Summary" -msgstr "" - -#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:10 -msgid "Show Summary" -msgstr "" - -#: airtime_mvc/application/models/Show.php:180 -msgid "Shows can have a max length of 24 hours." -msgstr "" - -#: airtime_mvc/application/models/Show.php:278 -#: airtime_mvc/application/forms/AddShowWhen.php:141 -msgid "End date/time cannot be in the past" -msgstr "" - -#: airtime_mvc/application/models/Show.php:289 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" - -#: airtime_mvc/application/models/ShowInstance.php:257 -msgid "can't resize a past show" -msgstr "" - -#: airtime_mvc/application/models/ShowInstance.php:279 -msgid "Should not overlap shows" -msgstr "" - -#: airtime_mvc/application/models/Preference.php:655 -#: airtime_mvc/application/models/Preference.php:666 -msgid "Select Country" -msgstr "" - -#: airtime_mvc/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "" - -#: airtime_mvc/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "" - -#: airtime_mvc/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "" - -#: airtime_mvc/application/models/MusicDir.php:189 -#: airtime_mvc/application/models/MusicDir.php:368 -#: airtime_mvc/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "" - -#: airtime_mvc/application/models/MusicDir.php:232 -#, php-format -msgid "" -"%s is already set as the current storage dir or in the watched folders list" -msgstr "" - -#: airtime_mvc/application/models/MusicDir.php:386 -#: airtime_mvc/application/models/MusicDir.php:388 -#, php-format -msgid "" -"%s is already set as the current storage dir or in the watched folders list." -msgstr "" - -#: airtime_mvc/application/models/MusicDir.php:429 -#: airtime_mvc/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "" - -#: airtime_mvc/application/models/Block.php:333 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:120 -msgid "items" -msgstr "" - -#: airtime_mvc/application/models/Block.php:833 -#: airtime_mvc/application/models/Playlist.php:812 -msgid "Cue in and cue out are null." -msgstr "" - -#: airtime_mvc/application/models/Block.php:868 -#: airtime_mvc/application/models/Block.php:924 -#: airtime_mvc/application/models/Playlist.php:851 -#: airtime_mvc/application/models/Playlist.php:895 -msgid "Can't set cue out to be greater than file length." -msgstr "" - -#: airtime_mvc/application/models/Block.php:879 -#: airtime_mvc/application/models/Block.php:900 -#: airtime_mvc/application/models/Playlist.php:843 -#: airtime_mvc/application/models/Playlist.php:868 -msgid "Can't set cue in to be larger than cue out." -msgstr "" - -#: airtime_mvc/application/models/Block.php:935 -#: airtime_mvc/application/models/Playlist.php:887 -msgid "Can't set cue out to be smaller than cue in." -msgstr "" - -#: airtime_mvc/application/models/Block.php:1340 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:48 -msgid "Select criteria" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1342 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -msgid "Bit Rate (Kbps)" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1343 -#: airtime_mvc/application/controllers/LocaleController.php:70 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:51 -msgid "BPM" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1350 -#: airtime_mvc/application/controllers/LocaleController.php:74 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:58 -msgid "Encoded By" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1355 -#: airtime_mvc/application/controllers/LocaleController.php:79 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:63 -msgid "Last Modified" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1356 -#: airtime_mvc/application/controllers/LocaleController.php:80 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:64 -msgid "Last Played" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1358 -#: airtime_mvc/application/controllers/LocaleController.php:82 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:66 -msgid "Mime" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1360 -#: airtime_mvc/application/controllers/LocaleController.php:84 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:68 -msgid "Owner" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1361 -#: airtime_mvc/application/controllers/LocaleController.php:85 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:69 -msgid "Replay Gain" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1362 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:70 -msgid "Sample Rate (kHz)" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1364 -#: airtime_mvc/application/controllers/LocaleController.php:87 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:72 -msgid "Track Number" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/controllers/LocaleController.php:88 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -msgid "Uploaded" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1366 -#: airtime_mvc/application/controllers/LocaleController.php:89 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 -msgid "Website" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1371 -#: airtime_mvc/application/controllers/LocaleController.php:141 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:87 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:103 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:251 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:366 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:404 -msgid "Select modifier" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1372 -#: airtime_mvc/application/controllers/LocaleController.php:142 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:88 -msgid "contains" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1373 -#: airtime_mvc/application/controllers/LocaleController.php:143 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:89 -msgid "does not contain" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1374 -#: airtime_mvc/application/models/Block.php:1378 -#: airtime_mvc/application/controllers/LocaleController.php:144 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:90 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:104 -msgid "is" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1375 -#: airtime_mvc/application/models/Block.php:1379 -#: airtime_mvc/application/controllers/LocaleController.php:145 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:91 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:105 -msgid "is not" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1376 -#: airtime_mvc/application/controllers/LocaleController.php:146 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:92 -msgid "starts with" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1377 -#: airtime_mvc/application/controllers/LocaleController.php:147 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:93 -msgid "ends with" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1380 -#: airtime_mvc/application/controllers/LocaleController.php:148 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:106 -msgid "is greater than" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1381 -#: airtime_mvc/application/controllers/LocaleController.php:149 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:107 -msgid "is less than" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1382 -#: airtime_mvc/application/controllers/LocaleController.php:150 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:108 -msgid "is in the range" -msgstr "" - -#: airtime_mvc/application/models/Webstream.php:157 -msgid "Length needs to be greater than 0 minutes" -msgstr "" - -#: airtime_mvc/application/models/Webstream.php:162 -msgid "Length should be of form \"00h 00m\"" -msgstr "" - -#: airtime_mvc/application/models/Webstream.php:175 -msgid "URL should be of form \"http://domain\"" -msgstr "" - -#: airtime_mvc/application/models/Webstream.php:178 -msgid "URL should be 512 characters or less" -msgstr "" - -#: airtime_mvc/application/models/Webstream.php:184 -msgid "No MIME type found for webstream." -msgstr "" - -#: airtime_mvc/application/models/Webstream.php:200 -msgid "Webstream name cannot be empty" -msgstr "" - -#: airtime_mvc/application/models/Webstream.php:269 -msgid "Could not parse XSPF playlist" -msgstr "" - -#: airtime_mvc/application/models/Webstream.php:281 -msgid "Could not parse PLS playlist" -msgstr "" - -#: airtime_mvc/application/models/Webstream.php:300 -msgid "Could not parse M3U playlist" -msgstr "" - -#: airtime_mvc/application/models/Webstream.php:314 -msgid "Invalid webstream - This appears to be a file download." -msgstr "" - -#: airtime_mvc/application/models/Webstream.php:318 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "" - -#: airtime_mvc/application/models/Auth.php:33 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Click this link to reset your password: " -msgstr "" - -#: airtime_mvc/application/models/Auth.php:36 -msgid "Airtime Password Reset" -msgstr "" - -#: airtime_mvc/application/models/ShowBuilder.php:212 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "" - -#: airtime_mvc/application/models/Scheduler.php:73 -msgid "Cannot move items out of linked shows" -msgstr "" - -#: airtime_mvc/application/models/Scheduler.php:119 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "" - -#: airtime_mvc/application/models/Scheduler.php:124 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "" - -#: airtime_mvc/application/models/Scheduler.php:132 -#: airtime_mvc/application/models/Scheduler.php:444 -#: airtime_mvc/application/models/Scheduler.php:482 -#: airtime_mvc/application/models/Scheduler.php:460 -#: airtime_mvc/application/models/Scheduler.php:498 -msgid "The schedule you're viewing is out of date!" -msgstr "" - -#: airtime_mvc/application/models/Scheduler.php:142 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "" - -#: airtime_mvc/application/models/Scheduler.php:146 -msgid "You cannot add files to recording shows." -msgstr "" - -#: airtime_mvc/application/models/Scheduler.php:152 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "" - -#: airtime_mvc/application/models/Scheduler.php:159 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "" - -#: airtime_mvc/application/models/Scheduler.php:178 -msgid "" -"Content in linked shows must be scheduled before or after any one is " -"broadcasted" -msgstr "" - -#: airtime_mvc/application/models/Scheduler.php:200 -#: airtime_mvc/application/models/Scheduler.php:289 -#: airtime_mvc/application/models/Scheduler.php:216 -#: airtime_mvc/application/models/Scheduler.php:305 -msgid "A selected File does not exist!" -msgstr "" - -#: airtime_mvc/application/models/StoredFile.php:1003 -msgid "Failed to create 'organize' directory." -msgstr "" - -#: airtime_mvc/application/models/StoredFile.php:1017 -#, php-format -msgid "" -"The file was not uploaded, there is %s MB of disk space left and the file " -"you are uploading has a size of %s MB." -msgstr "" - -#: airtime_mvc/application/models/StoredFile.php:1026 -msgid "" -"This file appears to be corrupted and will not be added to media library." -msgstr "" - -#: airtime_mvc/application/models/StoredFile.php:1065 -msgid "" -"The file was not uploaded, this error can occur if the computer hard drive " -"does not have enough disk space or the stor directory does not have correct " -"write permissions." -msgstr "" - -#: airtime_mvc/application/controllers/DashboardController.php:36 -#: airtime_mvc/application/controllers/DashboardController.php:85 -msgid "You don't have permission to disconnect source." -msgstr "" - -#: airtime_mvc/application/controllers/DashboardController.php:38 -#: airtime_mvc/application/controllers/DashboardController.php:87 -msgid "There is no source connected to this input." -msgstr "" - -#: airtime_mvc/application/controllers/DashboardController.php:82 -msgid "You don't have permission to switch source." -msgstr "" - -#: airtime_mvc/application/controllers/ScheduleController.php:350 -#: airtime_mvc/application/controllers/ScheduleController.php:383 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "" - -#: airtime_mvc/application/controllers/ScheduleController.php:624 -#: airtime_mvc/application/controllers/LibraryController.php:222 -#: airtime_mvc/application/controllers/ScheduleController.php:692 -#: airtime_mvc/application/controllers/LibraryController.php:220 -msgid "Download" -msgstr "" - -#: airtime_mvc/application/controllers/ListenerstatController.php:56 -#: airtime_mvc/application/controllers/ListenerstatController.php:91 -msgid "" -"Please make sure admin user/password is correct on System->Streams page." -msgstr "" - -#: airtime_mvc/application/controllers/ApiController.php:60 -#: airtime_mvc/application/controllers/Apiv2Controller.php:77 -msgid "You are not allowed to access this resource." -msgstr "" - -#: airtime_mvc/application/controllers/ApiController.php:314 -#: airtime_mvc/application/controllers/ApiController.php:376 -#: airtime_mvc/application/controllers/ApiController.php:315 -#: airtime_mvc/application/controllers/ApiController.php:377 -msgid "You are not allowed to access this resource. " -msgstr "" - -#: airtime_mvc/application/controllers/ApiController.php:555 -#: airtime_mvc/application/controllers/ApiController.php:558 -msgid "File does not exist in Airtime." -msgstr "" - -#: airtime_mvc/application/controllers/ApiController.php:575 -#: airtime_mvc/application/controllers/ApiController.php:578 -msgid "File does not exist in Airtime" -msgstr "" - -#: airtime_mvc/application/controllers/ApiController.php:587 -#: airtime_mvc/application/controllers/ApiController.php:590 -msgid "File doesn't exist in Airtime." -msgstr "" - -#: airtime_mvc/application/controllers/ApiController.php:638 -#: airtime_mvc/application/controllers/ApiController.php:641 -msgid "Bad request. no 'mode' parameter passed." -msgstr "" - -#: airtime_mvc/application/controllers/ApiController.php:648 -#: airtime_mvc/application/controllers/ApiController.php:651 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "" - -#: airtime_mvc/application/controllers/LibraryController.php:125 -#: airtime_mvc/application/controllers/PlaylistController.php:130 -#: airtime_mvc/application/controllers/LibraryController.php:123 -#, php-format -msgid "%s not found" -msgstr "" - -#: airtime_mvc/application/controllers/LibraryController.php:134 -#: airtime_mvc/application/controllers/PlaylistController.php:151 -#: airtime_mvc/application/controllers/LibraryController.php:132 -msgid "Something went wrong." -msgstr "" - -#: airtime_mvc/application/controllers/LibraryController.php:189 -#: airtime_mvc/application/controllers/ShowbuilderController.php:194 -#: airtime_mvc/application/controllers/LibraryController.php:187 -#: airtime_mvc/application/controllers/ShowbuilderController.php:202 -msgid "Preview" -msgstr "" - -#: airtime_mvc/application/controllers/LibraryController.php:210 -#: airtime_mvc/application/controllers/LibraryController.php:234 -#: airtime_mvc/application/controllers/LibraryController.php:257 -#: airtime_mvc/application/controllers/LibraryController.php:208 -#: airtime_mvc/application/controllers/LibraryController.php:232 -#: airtime_mvc/application/controllers/LibraryController.php:255 -msgid "Add to Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/LibraryController.php:212 -#: airtime_mvc/application/controllers/LibraryController.php:210 -msgid "Add to Smart Block" -msgstr "" - -#: airtime_mvc/application/controllers/LibraryController.php:218 -#: airtime_mvc/application/controllers/LocaleController.php:57 -#: airtime_mvc/application/controllers/LibraryController.php:216 -msgid "Edit Metadata" -msgstr "" - -#: airtime_mvc/application/controllers/LibraryController.php:226 -#: airtime_mvc/application/controllers/LibraryController.php:224 -msgid "Duplicate Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/LibraryController.php:276 -#: airtime_mvc/application/controllers/LibraryController.php:274 -msgid "Soundcloud" -msgstr "" - -#: airtime_mvc/application/controllers/LibraryController.php:295 -#: airtime_mvc/application/controllers/LibraryController.php:293 -msgid "No action available" -msgstr "" - -#: airtime_mvc/application/controllers/LibraryController.php:315 -#: airtime_mvc/application/controllers/LibraryController.php:313 -msgid "You don't have permission to delete selected items." -msgstr "" - -#: airtime_mvc/application/controllers/LibraryController.php:364 -#: airtime_mvc/application/controllers/LibraryController.php:362 -msgid "Could not delete some scheduled files." -msgstr "" - -#: airtime_mvc/application/controllers/LibraryController.php:404 -#: airtime_mvc/application/controllers/LibraryController.php:402 -#, php-format -msgid "Copy of %s" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:32 -msgid "Recording:" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:33 -msgid "Master Stream" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:34 -msgid "Live Stream" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:35 -msgid "Nothing Scheduled" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:36 -msgid "Current Show:" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:37 -msgid "Current" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:39 -msgid "You are running the latest version" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:40 -msgid "New version available: " -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:41 -msgid "This version will soon be obsolete." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:42 -msgid "This version is no longer supported." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:43 -msgid "Please upgrade to " -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:45 -msgid "Add to current playlist" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:46 -msgid "Add to current smart block" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:47 -msgid "Adding 1 Item" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:48 -#, php-format -msgid "Adding %s Items" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:49 -msgid "You can only add tracks to smart blocks." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:50 -#: airtime_mvc/application/controllers/PlaylistController.php:163 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:53 -msgid "Please select a cursor position on timeline." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:58 -msgid "Add to selected show" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:59 -msgid "Select" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:60 -msgid "Select this page" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:61 -msgid "Deselect this page" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:62 -msgid "Deselect all" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:63 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:64 -msgid "Scheduled" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:65 -msgid "Playlist / Block" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:69 -msgid "Bit Rate" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:86 -msgid "Sample Rate" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:91 -msgid "Loading..." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:92 -#: airtime_mvc/application/controllers/LocaleController.php:392 -#: airtime_mvc/application/views/scripts/plupload/index.phtml:25 -msgid "All" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:93 -msgid "Files" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:94 -msgid "Playlists" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:95 -msgid "Smart Blocks" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:96 -msgid "Web Streams" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:97 -msgid "Unknown type: " -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:98 -msgid "Are you sure you want to delete the selected item?" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:99 -#: airtime_mvc/application/controllers/LocaleController.php:200 -msgid "Uploading in progress..." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:100 -msgid "Retrieving data from the server..." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:101 -msgid "The soundcloud id for this file is: " -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:102 -msgid "There was an error while uploading to soundcloud." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:103 -msgid "Error code: " -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:104 -msgid "Error msg: " -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:105 -msgid "Input must be a positive number" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:106 -msgid "Input must be a number" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:107 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:108 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:111 -#, 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 "" - -#: airtime_mvc/application/controllers/LocaleController.php:113 -msgid "Open Media Builder" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:114 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:115 -msgid "please put in a time in seconds '00 (.0)'" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:116 -msgid "Your browser does not support playing this file type: " -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:117 -msgid "Dynamic block is not previewable" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:118 -msgid "Limit to: " -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:119 -msgid "Playlist saved" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:120 -msgid "Playlist shuffled" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:122 -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_mvc/application/controllers/LocaleController.php:124 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:126 -msgid "Remind me in 1 week" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:127 -msgid "Remind me never" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:128 -msgid "Yes, help Airtime" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:129 -#: airtime_mvc/application/controllers/LocaleController.php:178 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:132 -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 "" - -#: airtime_mvc/application/controllers/LocaleController.php:134 -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 "" - -#: airtime_mvc/application/controllers/LocaleController.php:136 -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_mvc/application/controllers/LocaleController.php:137 -msgid "Smart block shuffled" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:138 -msgid "Smart block generated and criteria saved" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:139 -msgid "Smart block saved" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:140 -msgid "Processing..." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:152 -msgid "Choose Storage Folder" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:153 -msgid "Choose Folder to Watch" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:155 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:157 -msgid "Are you sure you want to remove the watched folder?" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:158 -msgid "This path is currently not accessible." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:160 -#, php-format -msgid "" -"Some stream types require extra configuration. Details about enabling %sAAC+" -" Support%s or %sOpus Support%s are provided." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:161 -msgid "Connected to the streaming server" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:162 -msgid "The stream is disabled" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:163 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:218 -msgid "Getting information from the server..." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:164 -msgid "Can not connect to the streaming server" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:166 -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_mvc/application/controllers/LocaleController.php:167 -#, php-format -msgid "For more details, please read the %sAirtime Manual%s" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:169 -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 "" - -#: airtime_mvc/application/controllers/LocaleController.php:170 -msgid "" -"Check this box to automatically switch off Master/Show source upon source " -"disconnection." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:171 -msgid "" -"Check this box to automatically switch on Master/Show source upon source " -"connection." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:172 -msgid "" -"If your Icecast server expects a username of 'source', this field can be " -"left blank." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:173 -#: airtime_mvc/application/controllers/LocaleController.php:184 -msgid "" -"If your live streaming client does not ask for a username, this field should" -" be 'source'." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:175 -msgid "" -"If you change the username or password values for an enabled stream the " -"playout engine will be rebooted and your listeners will hear silence for " -"5-10 seconds. Changing the following fields will NOT cause a reboot: Stream " -"Label (Global Settings), and Switch Transition Fade(s), Master Username, and" -" Master Password (Input Stream Settings). If Airtime is recording, and if " -"the change causes a playout engine restart, the recording will be " -"interrupted." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:176 -msgid "" -"This is the admin username and password for Icecast/SHOUTcast to get " -"listener statistics." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:180 -msgid "" -"Warning: You cannot change this field while the show is currently playing" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:181 -msgid "No result found" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:182 -msgid "" -"This follows the same security pattern for the shows: only users assigned to" -" the show can connect." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:183 -msgid "Specify custom authentication which will work only for this show." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:185 -msgid "The show instance doesn't exist anymore!" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:186 -msgid "Warning: Shows cannot be re-linked" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:187 -msgid "" -"By linking your repeating shows any media items scheduled in any repeat show" -" will also get scheduled in the other repeat shows" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:188 -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 "" - -#: airtime_mvc/application/controllers/LocaleController.php:192 -msgid "Show" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:193 -msgid "Show is empty" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:194 -msgid "1m" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:195 -msgid "5m" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:196 -msgid "10m" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:197 -msgid "15m" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:198 -msgid "30m" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:199 -msgid "60m" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:201 -msgid "Retreiving data from the server..." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:207 -msgid "This show has no scheduled content." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:208 -msgid "This show is not completely filled with content." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:212 -msgid "January" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:213 -msgid "February" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:214 -msgid "March" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:215 -msgid "April" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:216 -#: airtime_mvc/application/controllers/LocaleController.php:228 -msgid "May" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:217 -msgid "June" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:218 -msgid "July" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:219 -msgid "August" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:220 -msgid "September" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:221 -msgid "October" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:222 -msgid "November" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:223 -msgid "December" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:224 -msgid "Jan" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:225 -msgid "Feb" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:226 -msgid "Mar" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:227 -msgid "Apr" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:229 -msgid "Jun" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:230 -msgid "Jul" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:231 -msgid "Aug" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:232 -msgid "Sep" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:233 -msgid "Oct" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:234 -msgid "Nov" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:235 -msgid "Dec" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:236 -msgid "today" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:237 -msgid "day" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:238 -msgid "week" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:239 -msgid "month" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:240 -#: airtime_mvc/application/forms/GeneralPreferences.php:123 -#: airtime_mvc/application/forms/GeneralPreferences.php:172 -msgid "Sunday" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:241 -#: airtime_mvc/application/forms/GeneralPreferences.php:124 -#: airtime_mvc/application/forms/GeneralPreferences.php:173 -msgid "Monday" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:242 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -#: airtime_mvc/application/forms/GeneralPreferences.php:174 -msgid "Tuesday" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:243 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -#: airtime_mvc/application/forms/GeneralPreferences.php:175 -msgid "Wednesday" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:244 -#: airtime_mvc/application/forms/GeneralPreferences.php:127 -#: airtime_mvc/application/forms/GeneralPreferences.php:176 -msgid "Thursday" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:245 -#: airtime_mvc/application/forms/GeneralPreferences.php:128 -#: airtime_mvc/application/forms/GeneralPreferences.php:177 -msgid "Friday" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:246 -#: airtime_mvc/application/forms/GeneralPreferences.php:129 -#: airtime_mvc/application/forms/GeneralPreferences.php:178 -msgid "Saturday" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:247 -#: airtime_mvc/application/forms/AddShowRepeats.php:35 -msgid "Sun" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:248 -#: airtime_mvc/application/forms/AddShowRepeats.php:36 -msgid "Mon" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:249 -#: airtime_mvc/application/forms/AddShowRepeats.php:37 -msgid "Tue" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:250 -#: airtime_mvc/application/forms/AddShowRepeats.php:38 -msgid "Wed" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:251 -#: airtime_mvc/application/forms/AddShowRepeats.php:39 -msgid "Thu" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:252 -#: airtime_mvc/application/forms/AddShowRepeats.php:40 -msgid "Fri" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:253 -#: airtime_mvc/application/forms/AddShowRepeats.php:41 -msgid "Sat" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:254 -msgid "" -"Shows longer than their scheduled time will be cut off by a following show." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:255 -msgid "Cancel Current Show?" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:256 -#: airtime_mvc/application/controllers/LocaleController.php:300 -msgid "Stop recording current show?" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:257 -msgid "Ok" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:258 -msgid "Contents of Show" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:261 -msgid "Remove all content?" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:263 -msgid "Delete selected item(s)?" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:265 -msgid "End" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:266 -msgid "Duration" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:276 -msgid "Show Empty" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:277 -msgid "Recording From Line In" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:278 -msgid "Track preview" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:282 -msgid "Cannot schedule outside a show." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:283 -msgid "Moving 1 Item" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:284 -#, php-format -msgid "Moving %s Items" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:286 -#: airtime_mvc/application/controllers/LocaleController.php:309 -#: airtime_mvc/application/forms/EditHistory.php:141 -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/forms/EditAudioMD.php:192 -msgid "Cancel" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:287 -msgid "Fade Editor" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:288 -msgid "Cue Editor" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:289 -msgid "" -"Waveform features are available in a browser supporting the Web Audio API" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:292 -msgid "Select all" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:293 -msgid "Select none" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:294 -msgid "Remove overbooked tracks" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:295 -msgid "Remove selected scheduled items" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:296 -msgid "Jump to the current playing track" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:297 -msgid "Cancel current show" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:302 -msgid "Open library to add or remove content" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:305 -msgid "in use" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:306 -msgid "Disk" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:308 -msgid "Look in" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:310 -msgid "Open" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:312 -#: airtime_mvc/application/forms/AddUser.php:98 -msgid "Admin" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:313 -#: airtime_mvc/application/forms/AddUser.php:96 -msgid "DJ" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:314 -#: airtime_mvc/application/forms/AddUser.php:97 -msgid "Program Manager" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:315 -#: airtime_mvc/application/forms/AddUser.php:95 -msgid "Guest" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:316 -msgid "Guests can do the following:" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:317 -msgid "View schedule" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:318 -msgid "View show content" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:319 -msgid "DJs can do the following:" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:320 -msgid "Manage assigned show content" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:321 -msgid "Import media files" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:322 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:323 -msgid "Manage their own library content" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:324 -msgid "Progam Managers can do the following:" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:325 -msgid "View and manage show content" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:326 -msgid "Schedule shows" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:327 -msgid "Manage all library content" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:328 -msgid "Admins can do the following:" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:329 -msgid "Manage preferences" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:330 -msgid "Manage users" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:331 -msgid "Manage watched folders" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:332 -#: airtime_mvc/application/forms/SupportSettings.php:112 -#: airtime_mvc/application/forms/RegisterAirtime.php:116 -#: airtime_mvc/application/forms/SupportSettings.php:111 -msgid "Send support feedback" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:333 -msgid "View system status" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:334 -msgid "Access playout history" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:335 -msgid "View listener stats" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:337 -msgid "Show / hide columns" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:339 -msgid "From {from} to {to}" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:340 -msgid "kbps" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:341 -msgid "yyyy-mm-dd" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:342 -msgid "hh:mm:ss.t" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:343 -msgid "kHz" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:346 -msgid "Su" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:347 -msgid "Mo" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:348 -msgid "Tu" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:349 -msgid "We" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:350 -msgid "Th" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:351 -msgid "Fr" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:352 -msgid "Sa" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:355 -msgid "Hour" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:356 -msgid "Minute" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:357 -msgid "Done" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:360 -msgid "Select files" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:361 -#: airtime_mvc/application/controllers/LocaleController.php:362 -msgid "Add files to the upload queue and click the start button." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:365 -msgid "Add Files" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:366 -msgid "Stop Upload" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:367 -msgid "Start upload" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:368 -msgid "Add files" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:369 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:370 -msgid "N/A" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:371 -msgid "Drag files here." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:372 -msgid "File extension error." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:373 -msgid "File size error." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:374 -msgid "File count error." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:375 -msgid "Init error." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:376 -msgid "HTTP Error." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:377 -msgid "Security error." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:378 -msgid "Generic error." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:379 -msgid "IO error." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:380 -#, php-format -msgid "File: %s" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:382 -#, php-format -msgid "%d files queued" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:383 -msgid "File: %f, size: %s, max file size: %m" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:384 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:385 -msgid "Error: File too large: " -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:386 -msgid "Error: Invalid file extension: " -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:389 -msgid "Create Entry" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:390 -msgid "Edit History Record" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:393 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:394 -#, php-format -msgid "" -"%sPrint view%sPlease use your browser's print function to print this table. " -"Press escape when finished." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:34 -#: airtime_mvc/application/controllers/LoginController.php:42 -msgid "Please enter your user name and password" -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:77 -#: airtime_mvc/application/controllers/LoginController.php:92 -msgid "Wrong username or password provided. Please try again." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:142 -#: airtime_mvc/application/controllers/LoginController.php:159 -msgid "" -"Email could not be sent. Check your mail server settings and ensure it has " -"been configured properly." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:145 -#: airtime_mvc/application/controllers/LoginController.php:162 -msgid "Given email not found." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:74 -#: airtime_mvc/application/controllers/PreferenceController.php:62 -msgid "Preferences updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:125 -#: airtime_mvc/application/controllers/PreferenceController.php:104 -msgid "Support setting updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:137 -#: airtime_mvc/application/configs/navigation.php:70 -#: airtime_mvc/application/controllers/PreferenceController.php:116 -msgid "Support Feedback" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:332 -#: airtime_mvc/application/controllers/PreferenceController.php:273 -msgid "Stream Setting Updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:365 -#: airtime_mvc/application/controllers/PreferenceController.php:306 -msgid "path should be specified" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:460 -#: airtime_mvc/application/controllers/PreferenceController.php:401 -msgid "Problem with Liquidsoap..." -msgstr "" - -#: airtime_mvc/application/controllers/ShowbuilderController.php:196 -#: airtime_mvc/application/controllers/ShowbuilderController.php:204 -msgid "Select cursor" -msgstr "" - -#: airtime_mvc/application/controllers/ShowbuilderController.php:197 -#: airtime_mvc/application/controllers/ShowbuilderController.php:205 -msgid "Remove cursor" -msgstr "" - -#: airtime_mvc/application/controllers/ShowbuilderController.php:216 -#: airtime_mvc/application/controllers/ShowbuilderController.php:224 -msgid "show does not exist" -msgstr "" - -#: airtime_mvc/application/controllers/WebstreamController.php:29 -#: airtime_mvc/application/controllers/WebstreamController.php:33 -msgid "Untitled Webstream" -msgstr "" - -#: airtime_mvc/application/controllers/WebstreamController.php:138 -msgid "Webstream saved." -msgstr "" - -#: airtime_mvc/application/controllers/WebstreamController.php:146 -msgid "Invalid form values." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:48 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:123 -msgid "You cannot add tracks to dynamic blocks." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:144 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:157 -msgid "You can only add tracks to smart block." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:175 -msgid "Untitled Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:177 -msgid "Untitled Smart Block" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:495 -msgid "Unknown Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/ErrorController.php:17 -msgid "Page not found" -msgstr "" - -#: airtime_mvc/application/controllers/ErrorController.php:22 -msgid "Application error" -msgstr "" - -#: airtime_mvc/application/controllers/UserController.php:82 -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "" - -#: airtime_mvc/application/controllers/UserController.php:84 -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "" - -#: airtime_mvc/application/controllers/UserController.php:154 -#: airtime_mvc/application/controllers/UserController.php:162 -msgid "Settings updated successfully!" -msgstr "" - -#: airtime_mvc/application/common/DateHelper.php:213 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "" - -#: airtime_mvc/application/common/DateHelper.php:216 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "" - -#: airtime_mvc/application/common/DateHelper.php:240 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "" - -#: airtime_mvc/application/forms/AddUser.php:25 -#: airtime_mvc/application/forms/Login.php:19 -#: airtime_mvc/application/forms/EditUser.php:32 -msgid "Username:" -msgstr "" - -#: airtime_mvc/application/forms/AddUser.php:34 -#: airtime_mvc/application/forms/Login.php:34 -#: airtime_mvc/application/forms/EditUser.php:43 -#: airtime_mvc/application/forms/BillingClient.php:172 -msgid "Password:" -msgstr "" - -#: airtime_mvc/application/forms/AddUser.php:42 -#: airtime_mvc/application/forms/EditUser.php:52 -#: airtime_mvc/application/forms/BillingClient.php:181 -msgid "Verify Password:" -msgstr "" - -#: airtime_mvc/application/forms/AddUser.php:51 -#: airtime_mvc/application/forms/EditUser.php:62 -msgid "Firstname:" -msgstr "" - -#: airtime_mvc/application/forms/AddUser.php:57 -#: airtime_mvc/application/forms/EditUser.php:70 -msgid "Lastname:" -msgstr "" - -#: airtime_mvc/application/forms/AddUser.php:63 -#: airtime_mvc/application/forms/SupportSettings.php:46 -#: airtime_mvc/application/forms/EditUser.php:78 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:45 -msgid "Email:" -msgstr "" - -#: airtime_mvc/application/forms/AddUser.php:72 -#: airtime_mvc/application/forms/EditUser.php:89 -msgid "Mobile Phone:" -msgstr "" - -#: airtime_mvc/application/forms/AddUser.php:78 -#: airtime_mvc/application/forms/EditUser.php:97 -msgid "Skype:" -msgstr "" - -#: airtime_mvc/application/forms/AddUser.php:84 -#: airtime_mvc/application/forms/EditUser.php:105 -msgid "Jabber:" -msgstr "" - -#: airtime_mvc/application/forms/AddUser.php:91 -msgid "User Type:" -msgstr "" - -#: airtime_mvc/application/forms/AddUser.php:116 -#: airtime_mvc/application/forms/EditUser.php:135 -msgid "Login name is not unique." -msgstr "" - -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 -msgid "Auto Switch Off" -msgstr "" - -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:26 -msgid "Auto Switch On" -msgstr "" - -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:33 -msgid "Switch Transition Fade (s)" -msgstr "" - -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:36 -msgid "enter a time in seconds 00{.000000}" -msgstr "" - -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:45 -msgid "Master Username" -msgstr "" - -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:62 -msgid "Master Password" -msgstr "" - -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:70 -msgid "Master Source Connection URL" -msgstr "" - -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:78 -msgid "Show Source Connection URL" -msgstr "" - -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:87 -msgid "Master Source Port" -msgstr "" - -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:90 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:109 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:112 -msgid "Only numbers are allowed." -msgstr "" - -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:96 -msgid "Master Source Mount Point" -msgstr "" - -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:99 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:118 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:100 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:123 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:144 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:198 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:210 -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: airtime_mvc/application/forms/DateRange.php:35 -#: airtime_mvc/application/forms/DateRange.php:63 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -msgid "Invalid character entered" -msgstr "" - -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:106 -msgid "Show Source Port" -msgstr "" - -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:115 -msgid "Show Source Mount Point" -msgstr "" - -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:153 -msgid "You cannot use same port as Master DJ port." -msgstr "" - -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:164 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:182 -#, php-format -msgid "Port %s is not available" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhen.php:22 -msgid "Date/Time Start:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhen.php:49 -msgid "Date/Time End:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhen.php:74 -msgid "Duration:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhen.php:83 -msgid "Timezone:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhen.php:92 -msgid "Repeats?" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhen.php:124 -msgid "Cannot create show in the past" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhen.php:132 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhen.php:149 -msgid "Cannot have duration < 0m" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhen.php:153 -msgid "Cannot have duration 00h 00m" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhen.php:160 -msgid "Cannot have duration greater than 24h" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 -#: airtime_mvc/application/forms/ShowBuilder.php:46 -msgid "Date End:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "" - -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "" - -#: airtime_mvc/application/forms/PasswordChange.php:17 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:120 -#: airtime_mvc/application/forms/EmailServerPreferences.php:82 -#: airtime_mvc/application/forms/EmailServerPreferences.php:81 -msgid "Password" -msgstr "" - -#: airtime_mvc/application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "" - -#: airtime_mvc/application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "" - -#: airtime_mvc/application/forms/PasswordChange.php:43 -msgid "Get new password" -msgstr "" - -#: airtime_mvc/application/forms/SupportSettings.php:21 -#: airtime_mvc/application/forms/GeneralPreferences.php:21 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/GeneralPreferences.php:20 -#: airtime_mvc/application/forms/SupportSettings.php:20 -msgid "Station Name" -msgstr "" - -#: airtime_mvc/application/forms/SupportSettings.php:34 -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:33 -msgid "Phone:" -msgstr "" - -#: airtime_mvc/application/forms/SupportSettings.php:57 -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:56 -msgid "Station Web Site:" -msgstr "" - -#: airtime_mvc/application/forms/SupportSettings.php:68 -#: airtime_mvc/application/forms/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/BillingClient.php:102 -#: airtime_mvc/application/forms/SupportSettings.php:67 -msgid "Country:" -msgstr "" - -#: airtime_mvc/application/forms/SupportSettings.php:79 -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/BillingClient.php:70 -#: airtime_mvc/application/forms/SupportSettings.php:78 -msgid "City:" -msgstr "" - -#: airtime_mvc/application/forms/SupportSettings.php:91 -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:90 -msgid "Station Description:" -msgstr "" - -#: airtime_mvc/application/forms/SupportSettings.php:101 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 -#: airtime_mvc/application/forms/SupportSettings.php:100 -msgid "Station Logo:" -msgstr "" - -#: airtime_mvc/application/forms/SupportSettings.php:122 -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:121 -msgid "Promote my station on Sourcefabric.org" -msgstr "" - -#: airtime_mvc/application/forms/SupportSettings.php:148 -#: airtime_mvc/application/forms/RegisterAirtime.php:149 -#: airtime_mvc/application/forms/SupportSettings.php:133 -#, php-format -msgid "By checking this box, I agree to Sourcefabric's %sprivacy policy%s." -msgstr "" - -#: airtime_mvc/application/forms/SupportSettings.php:171 -#: airtime_mvc/application/forms/RegisterAirtime.php:166 -#: airtime_mvc/application/forms/SupportSettings.php:155 -msgid "You have to agree to privacy policy." -msgstr "" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "" -"'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:48 -msgid "Enabled:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:57 -msgid "Stream Type:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:77 -msgid "Service Type:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:87 -msgid "Channels:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:88 -msgid "1 - Mono" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:88 -msgid "2 - Stereo" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:97 -msgid "Server" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:109 -#: airtime_mvc/application/forms/EmailServerPreferences.php:100 -#: airtime_mvc/application/forms/EmailServerPreferences.php:99 -msgid "Port" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:141 -msgid "URL" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:171 -msgid "Mount Point" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:195 -msgid "Admin User" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:207 -msgid "Admin Password" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:232 -msgid "Server cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:237 -msgid "Port cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:243 -msgid "Mount cannot be empty with Icecast server." -msgstr "" - -#: airtime_mvc/application/forms/StreamSetting.php:22 -msgid "Hardware Audio Output" -msgstr "" - -#: airtime_mvc/application/forms/StreamSetting.php:33 -msgid "Output Type" -msgstr "" - -#: airtime_mvc/application/forms/StreamSetting.php:44 -#: airtime_mvc/application/forms/StreamSetting.php:22 -msgid "Icecast Vorbis Metadata" -msgstr "" - -#: airtime_mvc/application/forms/StreamSetting.php:54 -#: airtime_mvc/application/forms/StreamSetting.php:32 -msgid "Stream Label:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSetting.php:55 -#: airtime_mvc/application/forms/StreamSetting.php:33 -msgid "Artist - Title" -msgstr "" - -#: airtime_mvc/application/forms/StreamSetting.php:56 -#: airtime_mvc/application/forms/StreamSetting.php:34 -msgid "Show - Artist - Title" -msgstr "" - -#: airtime_mvc/application/forms/StreamSetting.php:57 -#: airtime_mvc/application/forms/StreamSetting.php:35 -msgid "Station name - Show name" -msgstr "" - -#: airtime_mvc/application/forms/StreamSetting.php:63 -#: airtime_mvc/application/forms/StreamSetting.php:41 -msgid "Off Air Metadata" -msgstr "" - -#: airtime_mvc/application/forms/StreamSetting.php:69 -#: airtime_mvc/application/forms/StreamSetting.php:47 -msgid "Enable Replay Gain" -msgstr "" - -#: airtime_mvc/application/forms/StreamSetting.php:75 -#: airtime_mvc/application/forms/StreamSetting.php:53 -msgid "Replay Gain Modifier" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "" - -#: airtime_mvc/application/forms/EmailServerPreferences.php:17 -#: airtime_mvc/application/forms/EmailServerPreferences.php:16 -msgid "Enable System Emails (Password Reset)" -msgstr "" - -#: airtime_mvc/application/forms/EmailServerPreferences.php:27 -#: airtime_mvc/application/forms/EmailServerPreferences.php:26 -msgid "Reset Password 'From' Email" -msgstr "" - -#: airtime_mvc/application/forms/EmailServerPreferences.php:34 -#: airtime_mvc/application/forms/EmailServerPreferences.php:33 -msgid "Configure Mail Server" -msgstr "" - -#: airtime_mvc/application/forms/EmailServerPreferences.php:43 -#: airtime_mvc/application/forms/EmailServerPreferences.php:42 -msgid "Requires Authentication" -msgstr "" - -#: airtime_mvc/application/forms/EmailServerPreferences.php:53 -#: airtime_mvc/application/forms/EmailServerPreferences.php:52 -msgid "Mail Server" -msgstr "" - -#: airtime_mvc/application/forms/EmailServerPreferences.php:67 -#: airtime_mvc/application/forms/EmailServerPreferences.php:66 -msgid "Email Address" -msgstr "" - -#: airtime_mvc/application/forms/Login.php:83 -msgid "Type the characters you see in the picture below." -msgstr "" - -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "" - -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "" - -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:10 -msgid "Use Airtime Authentication:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:16 -msgid "Use Custom Authentication:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:39 -msgid "Custom Password" -msgstr "" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:63 -msgid "Username field cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:68 -msgid "Password field cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/DateRange.php:16 -#: airtime_mvc/application/forms/ShowBuilder.php:18 -msgid "Date Start:" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:33 -#: airtime_mvc/application/forms/GeneralPreferences.php:32 -msgid "Default Crossfade Duration (s):" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:40 -#: airtime_mvc/application/forms/GeneralPreferences.php:59 -#: airtime_mvc/application/forms/GeneralPreferences.php:78 -#: airtime_mvc/application/forms/GeneralPreferences.php:39 -#: airtime_mvc/application/forms/GeneralPreferences.php:58 -#: airtime_mvc/application/forms/GeneralPreferences.php:77 -msgid "enter a time in seconds 0{.0}" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:52 -#: airtime_mvc/application/forms/GeneralPreferences.php:51 -msgid "Default Fade In (s):" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:71 -#: airtime_mvc/application/forms/GeneralPreferences.php:70 -msgid "Default Fade Out (s):" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:89 -#: airtime_mvc/application/forms/GeneralPreferences.php:88 -#, php-format -msgid "" -"Allow Remote Websites To Access \"Schedule\" Info?%s (Enable this to make " -"front-end widgets work.)" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:90 -#: airtime_mvc/application/forms/GeneralPreferences.php:89 -msgid "Disabled" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:91 -#: airtime_mvc/application/forms/GeneralPreferences.php:90 -msgid "Enabled" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:97 -#: airtime_mvc/application/forms/GeneralPreferences.php:110 -msgid "Default Interface Language" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:105 -#: airtime_mvc/application/forms/GeneralPreferences.php:118 -msgid "Station Timezone" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:113 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Week Starts On" -msgstr "" - -#: airtime_mvc/application/forms/EditUser.php:121 -msgid "Interface Timezone:" -msgstr "" - -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "E-mail" -msgstr "" - -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Restore password" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:118 -msgid "hours" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:119 -msgid "minutes" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 -msgid "Set smart block type:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:170 -msgid "Static" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:171 -msgid "Dynamic" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:285 -msgid "Allow Repeat Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:302 -msgid "Limit to" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:324 -msgid "Generate playlist content and save criteria" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Generate" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:332 -msgid "Shuffle playlist content" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:500 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:512 -msgid "Limit cannot be empty or smaller than 0" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:505 -msgid "Limit cannot be more than 24 hrs" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:515 -msgid "The value should be an integer" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:518 -msgid "500 is the max item limit value you can set" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -msgid "You must select Criteria and Modifier" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:536 -msgid "'Length' should be in '00:00:00' format" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:554 -msgid "" -"The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 " -"00:00:00)" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:568 -msgid "The value has to be numeric" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:573 -msgid "The value should be less then 2147483648" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 -#, php-format -msgid "The value should be less than %s characters" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:585 -msgid "Value cannot be empty" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:72 -msgid "Show:" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "" - -#: airtime_mvc/application/forms/EditAudioMD.php:112 -#: airtime_mvc/application/forms/EditAudioMD.php:151 -msgid "ISRC Number:" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:16 -msgid "Automatically Upload Recorded Shows" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:26 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:16 -msgid "Enable SoundCloud Upload" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:36 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:26 -msgid "Automatically Mark Files \"Downloadable\" on SoundCloud" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:47 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:37 -msgid "SoundCloud Email" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:67 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:57 -msgid "SoundCloud Password" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:87 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:77 -msgid "SoundCloud Tags: (separate tags with spaces)" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:99 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:89 -msgid "Default Genre:" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:109 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:99 -msgid "Default Track Type:" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:113 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:103 -msgid "Original" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:114 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:104 -msgid "Remix" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:115 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:105 -msgid "Live" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:116 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:106 -msgid "Recording" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:117 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:107 -msgid "Spoken" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:118 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:108 -msgid "Podcast" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:119 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:109 -msgid "Demo" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:120 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:110 -msgid "Work in progress" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:121 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:111 -msgid "Stem" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:122 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:112 -msgid "Loop" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:123 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:113 -msgid "Sound Effect" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:124 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:114 -msgid "One Shot Sample" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:125 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:115 -msgid "Other" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:133 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:123 -msgid "Default License:" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:137 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:127 -msgid "The work is in the public domain" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:138 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:128 -msgid "All rights are reserved" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:139 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:129 -msgid "Creative Commons Attribution" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:140 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:130 -msgid "Creative Commons Attribution Noncommercial" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:141 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:131 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:142 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:132 -msgid "Creative Commons Attribution Share Alike" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:143 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:133 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:144 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:134 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:10 -msgid "Background Colour:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:29 -msgid "Text Colour:" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:12 -msgid "Now Playing" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:19 -msgid "Add Media" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:26 -msgid "Library" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:40 -msgid "System" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:50 -msgid "Users" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:57 -msgid "Media Folders" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:64 -msgid "Streams" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:83 -msgid "Listener Stats" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:92 -msgid "History" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:97 -msgid "Playout History" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:104 -msgid "History Templates" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:118 -msgid "Getting Started" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:125 -msgid "User Manual" -msgstr "" - -#: airtime_mvc/library/propel/contrib/pear/HTML_QuickForm_Propel/Propel.php:512 -msgid "Please selection an option" -msgstr "" - -#: airtime_mvc/library/propel/contrib/pear/HTML_QuickForm_Propel/Propel.php:531 -msgid "No Records" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/login.phtml:16 -#, php-format -msgid "" -"Airtime copyright © Sourcefabric z.ú. All rights reserved.%sMaintained " -"and distributed under the GNU GPL v.3 by %sSourcefabric z.ú.%s" -msgstr "" - -#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:15 -msgid "Plan type:" -msgstr "" - -#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:27 -msgid "Billing cycle:" -msgstr "" - -#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:35 -msgid "Payment method:" -msgstr "" - -#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:38 -msgid "PayPal" -msgstr "" - -#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:39 -msgid "Credit Card via 2Checkout" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:17 -msgid "First Name:" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:26 -msgid "Last Name:" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:35 -msgid "Company Name:" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:44 -msgid "Email Address:" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:54 -msgid "Address 1:" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:63 -msgid "Address 2:" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:80 -msgid "State/Region:" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:89 -msgid "Zip Code / Postal Code:" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:112 -msgid "Phone Number:" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:121 -msgid "Please choose a security question:" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:126 -msgid "What is the name of your favorite childhood friend?" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:127 -msgid "What school did you attend for sixth grade?" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:128 -msgid "In what city did you meet your spouse/significant other?" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:129 -msgid "What street did you live on in third grade?" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:130 -msgid "What is the first name of the boy or girl that you first kissed?" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:131 -msgid "In what city or town was your first job?" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:135 -msgid "Please enter an answer:" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:152 -msgid "VAT/Tax ID (EU only)" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:162 -msgid "Subscribe to Sourcefabric newsletter" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:139 -msgid "Billing" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:144 -msgid "Account Details" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:151 -#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171 -msgid "Account Plans" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:158 -msgid "View Invoices" -msgstr "" - -#: airtime_mvc/application/views/scripts/plupload/index.phtml:26 -msgid "Failed" -msgstr "" - -#: airtime_mvc/application/views/scripts/plupload/index.phtml:27 -msgid "Pending" -msgstr "" - -#: airtime_mvc/application/views/scripts/plupload/index.phtml:30 -msgid "Recent Uploads" -msgstr "" - -#: airtime_mvc/application/views/scripts/dashboard/about.phtml:13 -#, php-format -msgid "%sSourcefabric%s z.ú Airtime is distributed under the %sGNU GPL v.3%s" -msgstr "" - -#: airtime_mvc/application/views/scripts/login/index.phtml:7 -msgid "" -"Welcome to the Airtime demo! You can log in using the username 'admin' and " -"the password 'admin'." -msgstr "" - -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9 -msgid "Purchase an Airtime Pro plan!" -msgstr "" - -#: airtime_mvc/application/views/scripts/billing/invoices.phtml:6 -msgid "" -"Thank you! Your plan has been updated and you will be invoiced during" -" your next billing cycle." -msgstr "" - -#: airtime_mvc/application/views/scripts/billing/invoices.phtml:10 -msgid "" -"Tip: To pay an invoice, click \"View Invoice\"
and look for the " -"\"Checkout\" button." -msgstr "" - -#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172 -msgid "Upgrade today to get more listeners and storage space!" -msgstr "" - -#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:254 -msgid "View Plans" -msgstr "" - -#: airtime_mvc/application/views/scripts/user/add-user.phtml:30 -#, php-format -msgid "" -"Super Admin details can be changed in your Billing " -"Settings." -msgstr "" - -#: airtime_mvc/application/models/Scheduler.php:195 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" From 0c14f51455554fe275711669e3d8eb704c7593e2 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Wed, 18 Feb 2015 11:05:46 +0000 Subject: [PATCH 09/35] Removed more obsolete files, more complete versions are now in ja directory --- .../locale/ja_JP/LC_MESSAGES/airtime.mo | Bin 434 -> 0 bytes .../locale/ja_JP/LC_MESSAGES/airtime.po | 4333 ----------------- 2 files changed, 4333 deletions(-) delete mode 100644 airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.mo delete mode 100644 airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po diff --git a/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.mo deleted file mode 100644 index 57b4a6e78c461f6b5a55a351b2cd9523d61e02d7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 434 zcmYLEO-}+b5XI7U0(b)5NF6M8_w8vyKVbwv|PZh zYGr1Bg=2<^y?Is~hOxEyoF%Lk%%}75>BguX21BhpD75)w@H7uQ&rBht>XU3GtOGxI zPbV}!>8hOzuym|4olCXkB>s~A=$n&zSCAAND+)T%wsf2*Q>Sha^~pXQg#DoL4?GWn AYybcN diff --git a/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po deleted file mode 100644 index eb746a6722..0000000000 --- a/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po +++ /dev/null @@ -1,4333 +0,0 @@ -# -# Translators: -# Daniel James , 2014 -msgid "" -msgstr "" -"Project-Id-Version: Airtime\n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2014-07-28 11:49+0000\n" -"Last-Translator: Daniel James \n" -"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/airtime/language/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -# ENGLISH (en) original strings for Airtime. -# Copyright (C) 2014 Sourcefabric z.ú. -# This file is distributed under the same license as the Airtime package. -# -#: airtime_mvc/application/layouts/scripts/login.phtml:16 -#, php-format -msgid "" -"Airtime Copyright ©Sourcefabric o.p.s. All rights reserved.%sMaintained" -" and distributed under GNU GPL v.3 by %sSourcefabric o.p.s%s" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/bare.phtml:5 -#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2 -#: airtime_mvc/application/layouts/scripts/livestream.phtml:9 -msgid "Live stream" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/audio-player.phtml:5 -#: airtime_mvc/application/controllers/LocaleController.php:30 -msgid "Audio Player" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:27 -#: airtime_mvc/application/layouts/scripts/layout.phtml:38 -msgid "Logout" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:42 -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -#: airtime_mvc/application/layouts/scripts/layout.phtml:53 -#: airtime_mvc/application/layouts/scripts/layout.phtml:79 -msgid "Play" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:43 -#: airtime_mvc/application/layouts/scripts/layout.phtml:69 -#: airtime_mvc/application/layouts/scripts/layout.phtml:54 -#: airtime_mvc/application/layouts/scripts/layout.phtml:80 -msgid "Stop" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:47 -#: airtime_mvc/application/models/Block.php:1347 -#: airtime_mvc/application/controllers/LocaleController.php:272 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 -#: airtime_mvc/application/layouts/scripts/layout.phtml:58 -msgid "Cue In" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:49 -#: airtime_mvc/application/layouts/scripts/layout.phtml:60 -msgid "Set Cue In" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:54 -#: airtime_mvc/application/models/Block.php:1348 -#: airtime_mvc/application/controllers/LocaleController.php:273 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:56 -#: airtime_mvc/application/layouts/scripts/layout.phtml:65 -msgid "Cue Out" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:56 -#: airtime_mvc/application/layouts/scripts/layout.phtml:67 -msgid "Set Cue Out" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -#: airtime_mvc/application/layouts/scripts/layout.phtml:84 -msgid "Cursor" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:74 -#: airtime_mvc/application/controllers/LocaleController.php:274 -#: airtime_mvc/application/layouts/scripts/layout.phtml:85 -msgid "Fade In" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:75 -#: airtime_mvc/application/controllers/LocaleController.php:275 -#: airtime_mvc/application/layouts/scripts/layout.phtml:86 -msgid "Fade Out" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1105 -#: airtime_mvc/application/services/HistoryService.php:1145 -#: airtime_mvc/application/services/HistoryService.php:1162 -#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6 -#: airtime_mvc/application/models/Block.php:1363 -#: airtime_mvc/application/controllers/LocaleController.php:66 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:71 -#: airtime_mvc/application/services/HistoryService.php:1108 -#: airtime_mvc/application/services/HistoryService.php:1148 -#: airtime_mvc/application/services/HistoryService.php:1165 -msgid "Title" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1106 -#: airtime_mvc/application/services/HistoryService.php:1146 -#: airtime_mvc/application/services/HistoryService.php:1163 -#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7 -#: airtime_mvc/application/models/Block.php:1349 -#: airtime_mvc/application/controllers/LocaleController.php:67 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 -#: airtime_mvc/application/services/HistoryService.php:1109 -#: airtime_mvc/application/services/HistoryService.php:1149 -#: airtime_mvc/application/services/HistoryService.php:1166 -msgid "Creator" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1107 -#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8 -#: airtime_mvc/application/models/Block.php:1341 -#: airtime_mvc/application/controllers/LocaleController.php:68 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:49 -#: airtime_mvc/application/services/HistoryService.php:1110 -msgid "Album" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1108 -#: airtime_mvc/application/services/HistoryService.php:1165 -#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9 -#: airtime_mvc/application/models/Block.php:1357 -#: airtime_mvc/application/controllers/LocaleController.php:81 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:65 -#: airtime_mvc/application/services/HistoryService.php:1111 -#: airtime_mvc/application/services/HistoryService.php:1168 -msgid "Length" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1109 -#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10 -#: airtime_mvc/application/models/Block.php:1351 -#: airtime_mvc/application/controllers/LocaleController.php:75 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:132 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/services/HistoryService.php:1112 -msgid "Genre" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1110 -#: airtime_mvc/application/models/Block.php:1359 -#: airtime_mvc/application/controllers/LocaleController.php:83 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:67 -#: airtime_mvc/application/services/HistoryService.php:1113 -msgid "Mood" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1111 -#: airtime_mvc/application/models/Block.php:1353 -#: airtime_mvc/application/controllers/LocaleController.php:77 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:61 -#: airtime_mvc/application/services/HistoryService.php:1114 -msgid "Label" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1112 -#: airtime_mvc/application/services/HistoryService.php:1166 -#: airtime_mvc/application/models/Block.php:1344 -#: airtime_mvc/application/controllers/LocaleController.php:71 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/services/HistoryService.php:1115 -#: airtime_mvc/application/services/HistoryService.php:1169 -msgid "Composer" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1113 -#: airtime_mvc/application/models/Block.php:1352 -#: airtime_mvc/application/controllers/LocaleController.php:76 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:60 -#: airtime_mvc/application/services/HistoryService.php:1116 -msgid "ISRC" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1114 -#: airtime_mvc/application/services/HistoryService.php:1167 -#: airtime_mvc/application/models/Block.php:1346 -#: airtime_mvc/application/controllers/LocaleController.php:73 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:54 -#: airtime_mvc/application/services/HistoryService.php:1117 -#: airtime_mvc/application/services/HistoryService.php:1170 -msgid "Copyright" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1115 -#: airtime_mvc/application/models/Block.php:1367 -#: airtime_mvc/application/controllers/LocaleController.php:90 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:75 -#: airtime_mvc/application/services/HistoryService.php:1118 -msgid "Year" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1116 -#: airtime_mvc/application/services/HistoryService.php:1119 -msgid "Track" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1117 -#: airtime_mvc/application/models/Block.php:1345 -#: airtime_mvc/application/controllers/LocaleController.php:72 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:53 -#: airtime_mvc/application/services/HistoryService.php:1120 -msgid "Conductor" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1118 -#: airtime_mvc/application/models/Block.php:1354 -#: airtime_mvc/application/controllers/LocaleController.php:78 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:62 -#: airtime_mvc/application/services/HistoryService.php:1121 -msgid "Language" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1143 -#: airtime_mvc/application/forms/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1146 -msgid "Start Time" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1144 -#: airtime_mvc/application/forms/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1147 -msgid "End Time" -msgstr "" - -#: airtime_mvc/application/services/HistoryService.php:1164 -#: airtime_mvc/application/services/HistoryService.php:1167 -msgid "Played" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:50 -msgid "Record file doesn't exist" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:54 -msgid "View Recorded File Metadata" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:65 -#: airtime_mvc/application/controllers/LibraryController.php:282 -#: airtime_mvc/application/controllers/LibraryController.php:280 -msgid "View on Soundcloud" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:70 -#: airtime_mvc/application/controllers/LibraryController.php:288 -#: airtime_mvc/application/controllers/LibraryController.php:286 -msgid "Upload to SoundCloud" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:70 -#: airtime_mvc/application/controllers/LibraryController.php:286 -#: airtime_mvc/application/controllers/LibraryController.php:284 -msgid "Re-upload to SoundCloud" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:77 -#: airtime_mvc/application/services/CalendarService.php:121 -#: airtime_mvc/application/services/CalendarService.php:120 -msgid "Show Content" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:93 -#: airtime_mvc/application/services/CalendarService.php:100 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:15 -#: airtime_mvc/application/controllers/LocaleController.php:303 -#: airtime_mvc/application/services/CalendarService.php:96 -msgid "Add / Remove Content" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:111 -#: airtime_mvc/application/services/CalendarService.php:109 -msgid "Remove All Content" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:131 -#: airtime_mvc/application/services/CalendarService.php:135 -#: airtime_mvc/application/services/CalendarService.php:130 -#: airtime_mvc/application/services/CalendarService.php:134 -msgid "Cancel Current Show" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:152 -#: airtime_mvc/application/services/CalendarService.php:167 -#: airtime_mvc/application/services/CalendarService.php:151 -#: airtime_mvc/application/services/CalendarService.php:166 -msgid "Edit This Instance" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:157 -#: airtime_mvc/application/controllers/LibraryController.php:241 -#: airtime_mvc/application/controllers/LibraryController.php:263 -#: airtime_mvc/application/controllers/LibraryController.php:239 -#: airtime_mvc/application/controllers/LibraryController.php:261 -#: airtime_mvc/application/services/CalendarService.php:156 -msgid "Edit" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:162 -#: airtime_mvc/application/services/CalendarService.php:173 -#: airtime_mvc/application/services/CalendarService.php:161 -#: airtime_mvc/application/services/CalendarService.php:172 -msgid "Edit Show" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:186 -#: airtime_mvc/application/services/CalendarService.php:201 -#: airtime_mvc/application/services/CalendarService.php:206 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:19 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:30 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:27 -#: airtime_mvc/application/controllers/LibraryController.php:217 -#: airtime_mvc/application/controllers/LibraryController.php:246 -#: airtime_mvc/application/controllers/LibraryController.php:265 -#: airtime_mvc/application/controllers/ShowbuilderController.php:202 -#: airtime_mvc/application/controllers/LibraryController.php:215 -#: airtime_mvc/application/controllers/LibraryController.php:244 -#: airtime_mvc/application/controllers/LibraryController.php:263 -#: airtime_mvc/application/controllers/ShowbuilderController.php:210 -#: airtime_mvc/application/services/CalendarService.php:185 -#: airtime_mvc/application/services/CalendarService.php:200 -#: airtime_mvc/application/services/CalendarService.php:205 -msgid "Delete" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:191 -#: airtime_mvc/application/services/CalendarService.php:190 -msgid "Delete This Instance" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:196 -#: airtime_mvc/application/services/CalendarService.php:195 -msgid "Delete This Instance and All Following" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:250 -#: airtime_mvc/application/services/CalendarService.php:249 -msgid "Permission denied" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:254 -#: airtime_mvc/application/services/CalendarService.php:253 -msgid "Can't drag and drop repeating shows" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:263 -#: airtime_mvc/application/services/CalendarService.php:262 -msgid "Can't move a past show" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:281 -#: airtime_mvc/application/services/CalendarService.php:297 -msgid "Can't move show into past" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:288 -#: airtime_mvc/application/forms/AddShowWhen.php:280 -#: airtime_mvc/application/forms/AddShowWhen.php:294 -#: airtime_mvc/application/forms/AddShowWhen.php:318 -#: airtime_mvc/application/forms/AddShowWhen.php:324 -#: airtime_mvc/application/forms/AddShowWhen.php:329 -#: airtime_mvc/application/forms/AddShowWhen.php:274 -#: airtime_mvc/application/forms/AddShowWhen.php:288 -#: airtime_mvc/application/services/CalendarService.php:304 -msgid "Cannot schedule overlapping shows" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:301 -#: airtime_mvc/application/services/CalendarService.php:317 -msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:311 -#: airtime_mvc/application/services/CalendarService.php:327 -msgid "Show was deleted because recorded show does not exist!" -msgstr "" - -#: airtime_mvc/application/services/CalendarService.php:318 -#: airtime_mvc/application/services/CalendarService.php:334 -msgid "Must wait 1 hour to rebroadcast." -msgstr "" - -#: airtime_mvc/application/views/scripts/preference/index.phtml:2 -#: airtime_mvc/application/configs/navigation.php:45 -msgid "Preferences" -msgstr "" - -#: airtime_mvc/application/views/scripts/preference/index.phtml:6 -#: airtime_mvc/application/views/scripts/preference/index.phtml:14 -#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:6 -#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:115 -#: airtime_mvc/application/views/scripts/form/edit-user.phtml:160 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:16 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:27 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:24 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 -#: airtime_mvc/application/controllers/LocaleController.php:285 -#: airtime_mvc/application/forms/AddUser.php:106 -#: airtime_mvc/application/forms/SupportSettings.php:158 -#: airtime_mvc/application/forms/EditHistory.php:131 -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/forms/EditAudioMD.php:182 -#: airtime_mvc/application/forms/BillingClient.php:193 -#: airtime_mvc/application/forms/SupportSettings.php:143 -#: airtime_mvc/application/views/scripts/form/edit-user.phtml:161 -msgid "Save" -msgstr "" - -#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2 -#: airtime_mvc/application/controllers/LocaleController.php:156 -msgid "Manage Media Folders" -msgstr "" - -#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2 -msgid "Stream Settings" -msgstr "" - -#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:12 -msgid "Global Settings" -msgstr "" - -#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:87 -msgid "dB" -msgstr "" - -#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106 -msgid "Output Stream Settings" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9 -#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27 -msgid "Choose folder" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10 -msgid "Set" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19 -msgid "Current Import Folder:" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28 -#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 -#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 -msgid "Add" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43 -msgid "" -"Rescan watched directory (This is useful if it is network mount and may be " -"out of sync with Airtime)" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44 -msgid "Remove watched directory" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:50 -msgid "You are not watching any media folders." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1 -msgid "Register Airtime" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6 -#, php-format -msgid "" -"Help Airtime improve by letting us know how you are using it. This info will" -" be collected regularly in order to enhance your user experience.%sClick " -"'Yes, help Airtime' and we'll make sure the features you use are constantly " -"improving." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:25 -#, php-format -msgid "" -"Click the box below to advertise your station on %sSourcefabric.org%s. In " -"order to promote your station, 'Send support feedback' must be enabled. This" -" data will be collected in addition to the support feedback." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:47 -#: airtime_mvc/application/views/scripts/form/preferences_email_server.phtml:44 -#: airtime_mvc/application/views/scripts/form/preferences_email_server.phtml:74 -#: airtime_mvc/application/views/scripts/form/preferences_email_server.phtml:90 -#: airtime_mvc/application/views/scripts/form/preferences_general.phtml:97 -#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46 -#: airtime_mvc/application/views/scripts/form/preferences_soundcloud.phtml:44 -#: airtime_mvc/application/views/scripts/form/preferences_soundcloud.phtml:59 -#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:34 -#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:48 -#: airtime_mvc/application/views/scripts/form/preferences_soundcloud.phtml:31 -#: airtime_mvc/application/views/scripts/form/preferences_soundcloud.phtml:46 -#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5 -#: airtime_mvc/application/views/scripts/form/preferences_general.phtml:115 -msgid "(Required)" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:65 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:79 -#: airtime_mvc/application/views/scripts/form/support-setting.phtml:61 -#: airtime_mvc/application/views/scripts/form/support-setting.phtml:76 -#: airtime_mvc/application/views/scripts/form/support-setting.phtml:20 -#: airtime_mvc/application/views/scripts/form/support-setting.phtml:35 -msgid "(for verification purposes only, will not be published)" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:150 -#: airtime_mvc/application/views/scripts/form/support-setting.phtml:151 -#: airtime_mvc/application/views/scripts/form/support-setting.phtml:110 -msgid "Note: Anything larger than 600x600 will be resized." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:164 -#: airtime_mvc/application/views/scripts/form/support-setting.phtml:164 -msgid "Show me what I am sending " -msgstr "" - -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:178 -msgid "Terms and Conditions" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7 -msgid "Find Shows" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:12 -msgid "Filter By Show:" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/login.phtml:34 -#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3 -msgid "Reset password" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:3 -msgid "Smart Block Options" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:39 -msgid "or" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:40 -msgid "and" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:63 -msgid " to " -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:120 -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:133 -msgid "files meet the criteria" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:127 -msgid "file meet the criteria" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:53 -msgid "Connection URL: " -msgstr "" - -#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5 -#, php-format -msgid "" -"Help Airtime improve by letting Sourcefabric know how you are using it. This" -" information will be collected regularly in order to enhance your user " -"experience.%sClick the 'Send support feedback' box and we'll make sure the " -"features you use are constantly improving." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/support-setting.phtml:23 -#, php-format -msgid "Click the box below to promote your station on %sSourcefabric.org%s." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/support-setting.phtml:41 -msgid "" -"(In order to promote your station, 'Send support feedback' must be enabled)." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/support-setting.phtml:186 -msgid "Sourcefabric Privacy Policy" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:2 -msgid "Input Stream Settings" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:109 -#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:81 -msgid "Master Source Connection URL:" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:115 -#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:159 -msgid "Override" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:120 -#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:164 -#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:87 -#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:98 -msgid "OK" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:120 -#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:164 -#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:87 -#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:98 -msgid "RESET" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:153 -#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:92 -msgid "Show Source Connection URL:" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 -msgid "Choose Days:" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 -#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18 -msgid "Remove" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4 -msgid "Repeat Days:" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/preferences.phtml:5 -msgid "Email / Mail Server Settings" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/preferences.phtml:10 -#: airtime_mvc/application/views/scripts/form/preferences.phtml:5 -msgid "SoundCloud Settings" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1 -#, php-format -msgid "%s's Settings" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45 -msgid "Choose Show Instance" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53 -#: airtime_mvc/application/controllers/LocaleController.php:391 -#: airtime_mvc/application/forms/EditHistoryItem.php:57 -msgid "No Show" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56 -msgid "Find" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4 -msgid "Stream " -msgstr "" - -#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:77 -msgid "Additional Options" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:137 -msgid "" -"The following info will be displayed to listeners in their media player:" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:170 -msgid "(Your radio station website)" -msgstr "" - -#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:208 -msgid "Stream URL: " -msgstr "" - -#: airtime_mvc/application/views/scripts/form/daterange.phtml:6 -msgid "Filter History" -msgstr "" - -#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3 -msgid "Welcome to Airtime!" -msgstr "" - -#: airtime_mvc/application/views/scripts/dashboard/help.phtml:4 -msgid "" -"Here's how you can get started using Airtime to automate your broadcasts: " -msgstr "" - -#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7 -msgid "" -"Begin by adding your files to the library using the 'Add Media' menu button." -" You can drag and drop your files to this window too." -msgstr "" - -#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8 -msgid "" -"Create a show by going to 'Calendar' in the menu bar, and then clicking the " -"'+ Show' icon. This can be either a one-time or repeating show. Only admins " -"and program managers can add shows." -msgstr "" - -#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9 -msgid "" -"Add media to the show by going to your show in the Schedule calendar, left-" -"clicking on it and selecting 'Add / Remove Content'" -msgstr "" - -#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10 -msgid "" -"Select your media from the left pane and drag them to your show in the right" -" pane." -msgstr "" - -#: airtime_mvc/application/views/scripts/dashboard/help.phtml:12 -msgid "Then you're good to go!" -msgstr "" - -#: airtime_mvc/application/views/scripts/dashboard/help.phtml:13 -#, php-format -msgid "For more detailed help, read the %suser manual%s." -msgstr "" - -#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2 -#: airtime_mvc/application/configs/navigation.php:130 -msgid "About" -msgstr "" - -#: airtime_mvc/application/views/scripts/dashboard/about.phtml:5 -#, php-format -msgid "" -"%sAirtime%s %s, the open radio software for scheduling and remote station " -"management. %s" -msgstr "" - -#: airtime_mvc/application/views/scripts/dashboard/about.phtml:13 -#, php-format -msgid "" -"%sSourcefabric%s o.p.s. Airtime is distributed under the %sGNU GPL v.3%s" -msgstr "" - -#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3 -msgid "Share" -msgstr "" - -#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64 -msgid "Select stream:" -msgstr "" - -#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90 -#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60 -msgid "mute" -msgstr "" - -#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91 -#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63 -msgid "unmute" -msgstr "" - -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -#: airtime_mvc/application/forms/Login.php:65 -msgid "Login" -msgstr "" - -#: airtime_mvc/application/views/scripts/login/index.phtml:7 -msgid "" -"Welcome to the online Airtime demo! You can log in using the username " -"'admin' and the password 'admin'." -msgstr "" - -#: airtime_mvc/application/views/scripts/login/password-restore.phtml:7 -msgid "" -"Please enter your account e-mail address. You will receive a link to create " -"a new password via e-mail." -msgstr "" - -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3 -msgid "Email sent" -msgstr "" - -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6 -msgid "An email has been sent" -msgstr "" - -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:7 -msgid "Back to login screen" -msgstr "" - -#: airtime_mvc/application/views/scripts/login/password-change.phtml:3 -msgid "New password" -msgstr "" - -#: airtime_mvc/application/views/scripts/login/password-change.phtml:6 -msgid "Please enter and confirm your new password in the fields below." -msgstr "" - -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3 -msgid "Your trial expires in" -msgstr "" - -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" -msgstr "" - -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9 -msgid "Purchase your copy of Airtime" -msgstr "" - -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9 -msgid "My Account" -msgstr "" - -#: airtime_mvc/application/views/scripts/partialviews/header.phtml:3 -msgid "Previous:" -msgstr "" - -#: airtime_mvc/application/views/scripts/partialviews/header.phtml:10 -msgid "Next:" -msgstr "" - -#: airtime_mvc/application/views/scripts/partialviews/header.phtml:24 -msgid "Source Streams" -msgstr "" - -#: airtime_mvc/application/views/scripts/partialviews/header.phtml:29 -msgid "Master Source" -msgstr "" - -#: airtime_mvc/application/views/scripts/partialviews/header.phtml:38 -msgid "Show Source" -msgstr "" - -#: airtime_mvc/application/views/scripts/partialviews/header.phtml:45 -msgid "Scheduled Play" -msgstr "" - -#: airtime_mvc/application/views/scripts/partialviews/header.phtml:54 -msgid "ON AIR" -msgstr "" - -#: airtime_mvc/application/views/scripts/partialviews/header.phtml:55 -msgid "Listen" -msgstr "" - -#: airtime_mvc/application/views/scripts/partialviews/header.phtml:59 -msgid "Station time" -msgstr "" - -#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3 -#: airtime_mvc/application/controllers/LocaleController.php:353 -#: airtime_mvc/application/controllers/LocaleController.php:381 -msgid "Close" -msgstr "" - -#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6 -#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:40 -#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:34 -msgid "Add this show" -msgstr "" - -#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6 -#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:40 -#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:34 -msgid "Update show" -msgstr "" - -#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10 -msgid "What" -msgstr "" - -#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "When" -msgstr "" - -#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:19 -msgid "Live Stream Input" -msgstr "" - -#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:23 -msgid "Record & Rebroadcast" -msgstr "" - -#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:29 -#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:23 -msgid "Who" -msgstr "" - -#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:33 -#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:27 -msgid "Style" -msgstr "" - -#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5 -#: airtime_mvc/application/controllers/LocaleController.php:264 -msgid "Start" -msgstr "" - -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:4 -msgid "Service" -msgstr "" - -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:5 -#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:8 -#: airtime_mvc/application/controllers/LocaleController.php:363 -#: airtime_mvc/application/controllers/LocaleController.php:364 -#: airtime_mvc/application/configs/navigation.php:76 -msgid "Status" -msgstr "" - -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:6 -msgid "Uptime" -msgstr "" - -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:7 -msgid "CPU" -msgstr "" - -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:8 -msgid "Memory" -msgstr "" - -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:14 -msgid "Airtime Version" -msgstr "" - -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -msgid "Disk Space" -msgstr "" - -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:3 -#: airtime_mvc/application/views/scripts/library/library.phtml:3 -msgid "File import in progress..." -msgstr "" - -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:5 -#: airtime_mvc/application/views/scripts/library/library.phtml:10 -msgid "Advanced Search Options" -msgstr "" - -#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2 -msgid "Listener Count Over Time" -msgstr "" - -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:5 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:11 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:11 -msgid "New" -msgstr "" - -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:14 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:14 -msgid "New Playlist" -msgstr "" - -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:9 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:15 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:15 -msgid "New Smart Block" -msgstr "" - -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:10 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:16 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:16 -msgid "New Webstream" -msgstr "" - -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:39 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:53 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:55 -msgid "View / edit description" -msgstr "" - -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:41 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:55 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:57 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:162 -msgid "Description" -msgstr "" - -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:52 -msgid "Stream URL:" -msgstr "" - -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:57 -msgid "Default Length:" -msgstr "" - -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:64 -msgid "No webstream" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:21 -msgid "Empty playlist content" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:21 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:21 -msgid "Clear" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:24 -msgid "Shuffle playlist" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:24 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:334 -msgid "Shuffle" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:27 -msgid "Save playlist" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:34 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:31 -msgid "Playlist crossfade" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:67 -#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:72 -msgid "Fade in: " -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:70 -#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:75 -msgid "Fade out: " -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:85 -msgid "No open playlist" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3 -#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3 -msgid "Show Waveform" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6 -#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:72 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:75 -msgid "(ss.t)" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:21 -msgid "Empty smart block content" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:90 -msgid "No open smart block" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5 -msgid "Cue In: " -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5 -#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12 -msgid "(hh:mm:ss.t)" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12 -msgid "Cue Out: " -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19 -msgid "Original Length:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:54 -msgid "Expand Static Block" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:59 -msgid "Expand Dynamic Block" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:135 -msgid "Empty smart block" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:137 -msgid "Empty playlist" -msgstr "" - -#: airtime_mvc/application/views/scripts/error/error.phtml:6 -msgid "Zend Framework Default Application" -msgstr "" - -#: airtime_mvc/application/views/scripts/error/error.phtml:10 -msgid "Page not found!" -msgstr "" - -#: airtime_mvc/application/views/scripts/error/error.phtml:11 -msgid "Looks like the page you were looking for doesn't exist!" -msgstr "" - -#: airtime_mvc/application/views/scripts/error/error.phtml:13 -#: airtime_mvc/application/configs/navigation.php:113 -msgid "Help" -msgstr "" - -#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23 -msgid "previous" -msgstr "" - -#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28 -msgid "play" -msgstr "" - -#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32 -msgid "pause" -msgstr "" - -#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37 -msgid "next" -msgstr "" - -#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42 -msgid "stop" -msgstr "" - -#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69 -msgid "max volume" -msgstr "" - -#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79 -msgid "Update Required" -msgstr "" - -#: airtime_mvc/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 "" - -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 -msgid "Creating File Summary Template" -msgstr "" - -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 -msgid "Creating Log Sheet Template" -msgstr "" - -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:153 -msgid "Name" -msgstr "" - -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 -msgid "Add more elements" -msgstr "" - -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 -msgid "Add New Field" -msgstr "" - -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 -msgid "Set Default Template" -msgstr "" - -#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:4 -msgid "Log Sheet Templates" -msgstr "" - -#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:7 -msgid "No Log Sheet Templates" -msgstr "" - -#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:25 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:56 -#: airtime_mvc/application/controllers/LocaleController.php:388 -msgid "Set Default" -msgstr "" - -#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:31 -msgid "New Log Sheet Template" -msgstr "" - -#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:35 -msgid "File Summary Templates" -msgstr "" - -#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:38 -msgid "No File Summary Templates" -msgstr "" - -#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:62 -msgid "New File Summary Template" -msgstr "" - -#: airtime_mvc/application/views/scripts/user/add-user.phtml:3 -msgid "Manage Users" -msgstr "" - -#: airtime_mvc/application/views/scripts/user/add-user.phtml:10 -msgid "New User" -msgstr "" - -#: airtime_mvc/application/views/scripts/user/add-user.phtml:17 -msgid "id" -msgstr "" - -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -#: airtime_mvc/application/forms/PasswordRestore.php:25 -msgid "Username" -msgstr "" - -#: airtime_mvc/application/views/scripts/user/add-user.phtml:19 -msgid "First Name" -msgstr "" - -#: airtime_mvc/application/views/scripts/user/add-user.phtml:20 -msgid "Last Name" -msgstr "" - -#: airtime_mvc/application/views/scripts/user/add-user.phtml:21 -msgid "User Type" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/forms/EditAudioMD.php:19 -#: airtime_mvc/application/forms/EditAudioMD.php:25 -msgid "Title:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148 -#: airtime_mvc/application/forms/EditAudioMD.php:26 -#: airtime_mvc/application/forms/EditAudioMD.php:40 -msgid "Creator:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -#: airtime_mvc/application/forms/EditAudioMD.php:33 -#: airtime_mvc/application/forms/EditAudioMD.php:50 -msgid "Album:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12 -#: airtime_mvc/application/forms/EditAudioMD.php:40 -msgid "Track:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147 -msgid "Length:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14 -msgid "Sample Rate:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:67 -msgid "Bit Rate:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -#: airtime_mvc/application/forms/EditAudioMD.php:88 -#: airtime_mvc/application/forms/EditAudioMD.php:121 -msgid "Mood:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -#: airtime_mvc/application/forms/AddShowWhat.php:45 -#: airtime_mvc/application/forms/EditAudioMD.php:47 -#: airtime_mvc/application/forms/EditAudioMD.php:68 -msgid "Genre:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -#: airtime_mvc/application/forms/EditAudioMD.php:55 -#: airtime_mvc/application/forms/EditAudioMD.php:78 -msgid "Year:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -#: airtime_mvc/application/forms/EditAudioMD.php:67 -#: airtime_mvc/application/forms/EditAudioMD.php:91 -msgid "Label:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -#: airtime_mvc/application/forms/EditAudioMD.php:96 -#: airtime_mvc/application/forms/EditAudioMD.php:131 -msgid "BPM:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -#: airtime_mvc/application/forms/EditAudioMD.php:74 -#: airtime_mvc/application/forms/EditAudioMD.php:101 -msgid "Composer:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -#: airtime_mvc/application/forms/EditAudioMD.php:81 -#: airtime_mvc/application/forms/EditAudioMD.php:111 -msgid "Conductor:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/forms/EditAudioMD.php:141 -msgid "Copyright:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24 -msgid "Isrc Number:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -#: airtime_mvc/application/forms/EditAudioMD.php:119 -#: airtime_mvc/application/forms/EditAudioMD.php:161 -msgid "Website:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -#: airtime_mvc/application/forms/Login.php:48 -#: airtime_mvc/application/forms/EditUser.php:114 -#: airtime_mvc/application/forms/EditAudioMD.php:126 -#: airtime_mvc/application/forms/EditAudioMD.php:171 -msgid "Language:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27 -msgid "File Path:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146 -#: airtime_mvc/application/forms/AddShowWhat.php:26 -msgid "Name:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149 -#: airtime_mvc/application/forms/AddShowWhat.php:54 -msgid "Description:" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45 -msgid "Web Stream" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46 -msgid "Dynamic Smart Block" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47 -msgid "Static Smart Block" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48 -msgid "Audio Track" -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63 -msgid "Playlist Contents: " -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65 -msgid "Static Smart Block Contents: " -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104 -msgid "Dynamic Smart Block Criteria: " -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137 -msgid "Limit to " -msgstr "" - -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -#: airtime_mvc/application/forms/AddShowWhat.php:36 -msgid "URL:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:7 -msgid "Log Sheet" -msgstr "" - -#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8 -msgid "File Summary" -msgstr "" - -#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:10 -msgid "Show Summary" -msgstr "" - -#: airtime_mvc/application/models/Show.php:180 -msgid "Shows can have a max length of 24 hours." -msgstr "" - -#: airtime_mvc/application/models/Show.php:278 -#: airtime_mvc/application/forms/AddShowWhen.php:141 -msgid "End date/time cannot be in the past" -msgstr "" - -#: airtime_mvc/application/models/Show.php:289 -msgid "" -"Cannot schedule overlapping shows.\n" -"Note: Resizing a repeating show affects all of its repeats." -msgstr "" - -#: airtime_mvc/application/models/ShowInstance.php:257 -msgid "can't resize a past show" -msgstr "" - -#: airtime_mvc/application/models/ShowInstance.php:279 -msgid "Should not overlap shows" -msgstr "" - -#: airtime_mvc/application/models/Preference.php:655 -#: airtime_mvc/application/models/Preference.php:666 -msgid "Select Country" -msgstr "" - -#: airtime_mvc/application/models/MusicDir.php:160 -#, php-format -msgid "%s is already watched." -msgstr "" - -#: airtime_mvc/application/models/MusicDir.php:164 -#, php-format -msgid "%s contains nested watched directory: %s" -msgstr "" - -#: airtime_mvc/application/models/MusicDir.php:168 -#, php-format -msgid "%s is nested within existing watched directory: %s" -msgstr "" - -#: airtime_mvc/application/models/MusicDir.php:189 -#: airtime_mvc/application/models/MusicDir.php:368 -#: airtime_mvc/application/models/MusicDir.php:370 -#, php-format -msgid "%s is not a valid directory." -msgstr "" - -#: airtime_mvc/application/models/MusicDir.php:232 -#, php-format -msgid "" -"%s is already set as the current storage dir or in the watched folders list" -msgstr "" - -#: airtime_mvc/application/models/MusicDir.php:386 -#: airtime_mvc/application/models/MusicDir.php:388 -#, php-format -msgid "" -"%s is already set as the current storage dir or in the watched folders list." -msgstr "" - -#: airtime_mvc/application/models/MusicDir.php:429 -#: airtime_mvc/application/models/MusicDir.php:431 -#, php-format -msgid "%s doesn't exist in the watched list." -msgstr "" - -#: airtime_mvc/application/models/Block.php:333 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:120 -msgid "items" -msgstr "" - -#: airtime_mvc/application/models/Block.php:833 -#: airtime_mvc/application/models/Playlist.php:812 -msgid "Cue in and cue out are null." -msgstr "" - -#: airtime_mvc/application/models/Block.php:868 -#: airtime_mvc/application/models/Block.php:924 -#: airtime_mvc/application/models/Playlist.php:851 -#: airtime_mvc/application/models/Playlist.php:895 -msgid "Can't set cue out to be greater than file length." -msgstr "" - -#: airtime_mvc/application/models/Block.php:879 -#: airtime_mvc/application/models/Block.php:900 -#: airtime_mvc/application/models/Playlist.php:843 -#: airtime_mvc/application/models/Playlist.php:868 -msgid "Can't set cue in to be larger than cue out." -msgstr "" - -#: airtime_mvc/application/models/Block.php:935 -#: airtime_mvc/application/models/Playlist.php:887 -msgid "Can't set cue out to be smaller than cue in." -msgstr "" - -#: airtime_mvc/application/models/Block.php:1340 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:48 -msgid "Select criteria" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1342 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -msgid "Bit Rate (Kbps)" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1343 -#: airtime_mvc/application/controllers/LocaleController.php:70 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:51 -msgid "BPM" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1350 -#: airtime_mvc/application/controllers/LocaleController.php:74 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:58 -msgid "Encoded By" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1355 -#: airtime_mvc/application/controllers/LocaleController.php:79 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:63 -msgid "Last Modified" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1356 -#: airtime_mvc/application/controllers/LocaleController.php:80 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:64 -msgid "Last Played" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1358 -#: airtime_mvc/application/controllers/LocaleController.php:82 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:66 -msgid "Mime" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1360 -#: airtime_mvc/application/controllers/LocaleController.php:84 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:68 -msgid "Owner" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1361 -#: airtime_mvc/application/controllers/LocaleController.php:85 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:69 -msgid "Replay Gain" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1362 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:70 -msgid "Sample Rate (kHz)" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1364 -#: airtime_mvc/application/controllers/LocaleController.php:87 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:72 -msgid "Track Number" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/controllers/LocaleController.php:88 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -msgid "Uploaded" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1366 -#: airtime_mvc/application/controllers/LocaleController.php:89 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 -msgid "Website" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1371 -#: airtime_mvc/application/controllers/LocaleController.php:141 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:87 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:103 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:251 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:366 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:404 -msgid "Select modifier" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1372 -#: airtime_mvc/application/controllers/LocaleController.php:142 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:88 -msgid "contains" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1373 -#: airtime_mvc/application/controllers/LocaleController.php:143 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:89 -msgid "does not contain" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1374 -#: airtime_mvc/application/models/Block.php:1378 -#: airtime_mvc/application/controllers/LocaleController.php:144 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:90 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:104 -msgid "is" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1375 -#: airtime_mvc/application/models/Block.php:1379 -#: airtime_mvc/application/controllers/LocaleController.php:145 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:91 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:105 -msgid "is not" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1376 -#: airtime_mvc/application/controllers/LocaleController.php:146 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:92 -msgid "starts with" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1377 -#: airtime_mvc/application/controllers/LocaleController.php:147 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:93 -msgid "ends with" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1380 -#: airtime_mvc/application/controllers/LocaleController.php:148 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:106 -msgid "is greater than" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1381 -#: airtime_mvc/application/controllers/LocaleController.php:149 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:107 -msgid "is less than" -msgstr "" - -#: airtime_mvc/application/models/Block.php:1382 -#: airtime_mvc/application/controllers/LocaleController.php:150 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:108 -msgid "is in the range" -msgstr "" - -#: airtime_mvc/application/models/Webstream.php:157 -msgid "Length needs to be greater than 0 minutes" -msgstr "" - -#: airtime_mvc/application/models/Webstream.php:162 -msgid "Length should be of form \"00h 00m\"" -msgstr "" - -#: airtime_mvc/application/models/Webstream.php:175 -msgid "URL should be of form \"http://domain\"" -msgstr "" - -#: airtime_mvc/application/models/Webstream.php:178 -msgid "URL should be 512 characters or less" -msgstr "" - -#: airtime_mvc/application/models/Webstream.php:184 -msgid "No MIME type found for webstream." -msgstr "" - -#: airtime_mvc/application/models/Webstream.php:200 -msgid "Webstream name cannot be empty" -msgstr "" - -#: airtime_mvc/application/models/Webstream.php:269 -msgid "Could not parse XSPF playlist" -msgstr "" - -#: airtime_mvc/application/models/Webstream.php:281 -msgid "Could not parse PLS playlist" -msgstr "" - -#: airtime_mvc/application/models/Webstream.php:300 -msgid "Could not parse M3U playlist" -msgstr "" - -#: airtime_mvc/application/models/Webstream.php:314 -msgid "Invalid webstream - This appears to be a file download." -msgstr "" - -#: airtime_mvc/application/models/Webstream.php:318 -#, php-format -msgid "Unrecognized stream type: %s" -msgstr "" - -#: airtime_mvc/application/models/Auth.php:33 -#, php-format -msgid "" -"Hi %s, \n" -"\n" -"Click this link to reset your password: " -msgstr "" - -#: airtime_mvc/application/models/Auth.php:36 -msgid "Airtime Password Reset" -msgstr "" - -#: airtime_mvc/application/models/ShowBuilder.php:212 -#, php-format -msgid "Rebroadcast of %s from %s" -msgstr "" - -#: airtime_mvc/application/models/Scheduler.php:73 -msgid "Cannot move items out of linked shows" -msgstr "" - -#: airtime_mvc/application/models/Scheduler.php:119 -msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "" - -#: airtime_mvc/application/models/Scheduler.php:124 -msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "" - -#: airtime_mvc/application/models/Scheduler.php:132 -#: airtime_mvc/application/models/Scheduler.php:444 -#: airtime_mvc/application/models/Scheduler.php:482 -#: airtime_mvc/application/models/Scheduler.php:460 -#: airtime_mvc/application/models/Scheduler.php:498 -msgid "The schedule you're viewing is out of date!" -msgstr "" - -#: airtime_mvc/application/models/Scheduler.php:142 -#, php-format -msgid "You are not allowed to schedule show %s." -msgstr "" - -#: airtime_mvc/application/models/Scheduler.php:146 -msgid "You cannot add files to recording shows." -msgstr "" - -#: airtime_mvc/application/models/Scheduler.php:152 -#, php-format -msgid "The show %s is over and cannot be scheduled." -msgstr "" - -#: airtime_mvc/application/models/Scheduler.php:159 -#, php-format -msgid "The show %s has been previously updated!" -msgstr "" - -#: airtime_mvc/application/models/Scheduler.php:178 -msgid "" -"Content in linked shows must be scheduled before or after any one is " -"broadcasted" -msgstr "" - -#: airtime_mvc/application/models/Scheduler.php:200 -#: airtime_mvc/application/models/Scheduler.php:289 -#: airtime_mvc/application/models/Scheduler.php:216 -#: airtime_mvc/application/models/Scheduler.php:305 -msgid "A selected File does not exist!" -msgstr "" - -#: airtime_mvc/application/models/StoredFile.php:1003 -msgid "Failed to create 'organize' directory." -msgstr "" - -#: airtime_mvc/application/models/StoredFile.php:1017 -#, php-format -msgid "" -"The file was not uploaded, there is %s MB of disk space left and the file " -"you are uploading has a size of %s MB." -msgstr "" - -#: airtime_mvc/application/models/StoredFile.php:1026 -msgid "" -"This file appears to be corrupted and will not be added to media library." -msgstr "" - -#: airtime_mvc/application/models/StoredFile.php:1065 -msgid "" -"The file was not uploaded, this error can occur if the computer hard drive " -"does not have enough disk space or the stor directory does not have correct " -"write permissions." -msgstr "" - -#: airtime_mvc/application/controllers/DashboardController.php:36 -#: airtime_mvc/application/controllers/DashboardController.php:85 -msgid "You don't have permission to disconnect source." -msgstr "" - -#: airtime_mvc/application/controllers/DashboardController.php:38 -#: airtime_mvc/application/controllers/DashboardController.php:87 -msgid "There is no source connected to this input." -msgstr "" - -#: airtime_mvc/application/controllers/DashboardController.php:82 -msgid "You don't have permission to switch source." -msgstr "" - -#: airtime_mvc/application/controllers/ScheduleController.php:350 -#: airtime_mvc/application/controllers/ScheduleController.php:383 -#, php-format -msgid "Rebroadcast of show %s from %s at %s" -msgstr "" - -#: airtime_mvc/application/controllers/ScheduleController.php:624 -#: airtime_mvc/application/controllers/LibraryController.php:222 -#: airtime_mvc/application/controllers/ScheduleController.php:692 -#: airtime_mvc/application/controllers/LibraryController.php:220 -msgid "Download" -msgstr "" - -#: airtime_mvc/application/controllers/ListenerstatController.php:56 -#: airtime_mvc/application/controllers/ListenerstatController.php:91 -msgid "" -"Please make sure admin user/password is correct on System->Streams page." -msgstr "" - -#: airtime_mvc/application/controllers/ApiController.php:60 -#: airtime_mvc/application/controllers/Apiv2Controller.php:77 -msgid "You are not allowed to access this resource." -msgstr "" - -#: airtime_mvc/application/controllers/ApiController.php:314 -#: airtime_mvc/application/controllers/ApiController.php:376 -#: airtime_mvc/application/controllers/ApiController.php:315 -#: airtime_mvc/application/controllers/ApiController.php:377 -msgid "You are not allowed to access this resource. " -msgstr "" - -#: airtime_mvc/application/controllers/ApiController.php:555 -#: airtime_mvc/application/controllers/ApiController.php:558 -msgid "File does not exist in Airtime." -msgstr "" - -#: airtime_mvc/application/controllers/ApiController.php:575 -#: airtime_mvc/application/controllers/ApiController.php:578 -msgid "File does not exist in Airtime" -msgstr "" - -#: airtime_mvc/application/controllers/ApiController.php:587 -#: airtime_mvc/application/controllers/ApiController.php:590 -msgid "File doesn't exist in Airtime." -msgstr "" - -#: airtime_mvc/application/controllers/ApiController.php:638 -#: airtime_mvc/application/controllers/ApiController.php:641 -msgid "Bad request. no 'mode' parameter passed." -msgstr "" - -#: airtime_mvc/application/controllers/ApiController.php:648 -#: airtime_mvc/application/controllers/ApiController.php:651 -msgid "Bad request. 'mode' parameter is invalid" -msgstr "" - -#: airtime_mvc/application/controllers/LibraryController.php:125 -#: airtime_mvc/application/controllers/PlaylistController.php:130 -#: airtime_mvc/application/controllers/LibraryController.php:123 -#, php-format -msgid "%s not found" -msgstr "" - -#: airtime_mvc/application/controllers/LibraryController.php:134 -#: airtime_mvc/application/controllers/PlaylistController.php:151 -#: airtime_mvc/application/controllers/LibraryController.php:132 -msgid "Something went wrong." -msgstr "" - -#: airtime_mvc/application/controllers/LibraryController.php:189 -#: airtime_mvc/application/controllers/ShowbuilderController.php:194 -#: airtime_mvc/application/controllers/LibraryController.php:187 -#: airtime_mvc/application/controllers/ShowbuilderController.php:202 -msgid "Preview" -msgstr "" - -#: airtime_mvc/application/controllers/LibraryController.php:210 -#: airtime_mvc/application/controllers/LibraryController.php:234 -#: airtime_mvc/application/controllers/LibraryController.php:257 -#: airtime_mvc/application/controllers/LibraryController.php:208 -#: airtime_mvc/application/controllers/LibraryController.php:232 -#: airtime_mvc/application/controllers/LibraryController.php:255 -msgid "Add to Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/LibraryController.php:212 -#: airtime_mvc/application/controllers/LibraryController.php:210 -msgid "Add to Smart Block" -msgstr "" - -#: airtime_mvc/application/controllers/LibraryController.php:218 -#: airtime_mvc/application/controllers/LocaleController.php:57 -#: airtime_mvc/application/controllers/LibraryController.php:216 -msgid "Edit Metadata" -msgstr "" - -#: airtime_mvc/application/controllers/LibraryController.php:226 -#: airtime_mvc/application/controllers/LibraryController.php:224 -msgid "Duplicate Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/LibraryController.php:276 -#: airtime_mvc/application/controllers/LibraryController.php:274 -msgid "Soundcloud" -msgstr "" - -#: airtime_mvc/application/controllers/LibraryController.php:295 -#: airtime_mvc/application/controllers/LibraryController.php:293 -msgid "No action available" -msgstr "" - -#: airtime_mvc/application/controllers/LibraryController.php:315 -#: airtime_mvc/application/controllers/LibraryController.php:313 -msgid "You don't have permission to delete selected items." -msgstr "" - -#: airtime_mvc/application/controllers/LibraryController.php:364 -#: airtime_mvc/application/controllers/LibraryController.php:362 -msgid "Could not delete some scheduled files." -msgstr "" - -#: airtime_mvc/application/controllers/LibraryController.php:404 -#: airtime_mvc/application/controllers/LibraryController.php:402 -#, php-format -msgid "Copy of %s" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:32 -msgid "Recording:" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:33 -msgid "Master Stream" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:34 -msgid "Live Stream" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:35 -msgid "Nothing Scheduled" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:36 -msgid "Current Show:" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:37 -msgid "Current" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:39 -msgid "You are running the latest version" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:40 -msgid "New version available: " -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:41 -msgid "This version will soon be obsolete." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:42 -msgid "This version is no longer supported." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:43 -msgid "Please upgrade to " -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:45 -msgid "Add to current playlist" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:46 -msgid "Add to current smart block" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:47 -msgid "Adding 1 Item" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:48 -#, php-format -msgid "Adding %s Items" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:49 -msgid "You can only add tracks to smart blocks." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:50 -#: airtime_mvc/application/controllers/PlaylistController.php:163 -msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:53 -msgid "Please select a cursor position on timeline." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:58 -msgid "Add to selected show" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:59 -msgid "Select" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:60 -msgid "Select this page" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:61 -msgid "Deselect this page" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:62 -msgid "Deselect all" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:63 -msgid "Are you sure you want to delete the selected item(s)?" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:64 -msgid "Scheduled" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:65 -msgid "Playlist / Block" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:69 -msgid "Bit Rate" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:86 -msgid "Sample Rate" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:91 -msgid "Loading..." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:92 -#: airtime_mvc/application/controllers/LocaleController.php:392 -#: airtime_mvc/application/views/scripts/plupload/index.phtml:25 -msgid "All" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:93 -msgid "Files" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:94 -msgid "Playlists" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:95 -msgid "Smart Blocks" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:96 -msgid "Web Streams" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:97 -msgid "Unknown type: " -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:98 -msgid "Are you sure you want to delete the selected item?" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:99 -#: airtime_mvc/application/controllers/LocaleController.php:200 -msgid "Uploading in progress..." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:100 -msgid "Retrieving data from the server..." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:101 -msgid "The soundcloud id for this file is: " -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:102 -msgid "There was an error while uploading to soundcloud." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:103 -msgid "Error code: " -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:104 -msgid "Error msg: " -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:105 -msgid "Input must be a positive number" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:106 -msgid "Input must be a number" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:107 -msgid "Input must be in the format: yyyy-mm-dd" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:108 -msgid "Input must be in the format: hh:mm:ss.t" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:111 -#, 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 "" - -#: airtime_mvc/application/controllers/LocaleController.php:113 -msgid "Open Media Builder" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:114 -msgid "please put in a time '00:00:00 (.0)'" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:115 -msgid "please put in a time in seconds '00 (.0)'" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:116 -msgid "Your browser does not support playing this file type: " -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:117 -msgid "Dynamic block is not previewable" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:118 -msgid "Limit to: " -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:119 -msgid "Playlist saved" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:120 -msgid "Playlist shuffled" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:122 -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_mvc/application/controllers/LocaleController.php:124 -#, php-format -msgid "Listener Count on %s: %s" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:126 -msgid "Remind me in 1 week" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:127 -msgid "Remind me never" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:128 -msgid "Yes, help Airtime" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:129 -#: airtime_mvc/application/controllers/LocaleController.php:178 -msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:132 -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 "" - -#: airtime_mvc/application/controllers/LocaleController.php:134 -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 "" - -#: airtime_mvc/application/controllers/LocaleController.php:136 -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_mvc/application/controllers/LocaleController.php:137 -msgid "Smart block shuffled" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:138 -msgid "Smart block generated and criteria saved" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:139 -msgid "Smart block saved" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:140 -msgid "Processing..." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:152 -msgid "Choose Storage Folder" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:153 -msgid "Choose Folder to Watch" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:155 -msgid "" -"Are you sure you want to change the storage folder?\n" -"This will remove the files from your Airtime library!" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:157 -msgid "Are you sure you want to remove the watched folder?" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:158 -msgid "This path is currently not accessible." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:160 -#, php-format -msgid "" -"Some stream types require extra configuration. Details about enabling %sAAC+" -" Support%s or %sOpus Support%s are provided." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:161 -msgid "Connected to the streaming server" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:162 -msgid "The stream is disabled" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:163 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:218 -msgid "Getting information from the server..." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:164 -msgid "Can not connect to the streaming server" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:166 -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_mvc/application/controllers/LocaleController.php:167 -#, php-format -msgid "For more details, please read the %sAirtime Manual%s" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:169 -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 "" - -#: airtime_mvc/application/controllers/LocaleController.php:170 -msgid "" -"Check this box to automatically switch off Master/Show source upon source " -"disconnection." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:171 -msgid "" -"Check this box to automatically switch on Master/Show source upon source " -"connection." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:172 -msgid "" -"If your Icecast server expects a username of 'source', this field can be " -"left blank." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:173 -#: airtime_mvc/application/controllers/LocaleController.php:184 -msgid "" -"If your live streaming client does not ask for a username, this field should" -" be 'source'." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:175 -msgid "" -"If you change the username or password values for an enabled stream the " -"playout engine will be rebooted and your listeners will hear silence for " -"5-10 seconds. Changing the following fields will NOT cause a reboot: Stream " -"Label (Global Settings), and Switch Transition Fade(s), Master Username, and" -" Master Password (Input Stream Settings). If Airtime is recording, and if " -"the change causes a playout engine restart, the recording will be " -"interrupted." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:176 -msgid "" -"This is the admin username and password for Icecast/SHOUTcast to get " -"listener statistics." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:180 -msgid "" -"Warning: You cannot change this field while the show is currently playing" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:181 -msgid "No result found" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:182 -msgid "" -"This follows the same security pattern for the shows: only users assigned to" -" the show can connect." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:183 -msgid "Specify custom authentication which will work only for this show." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:185 -msgid "The show instance doesn't exist anymore!" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:186 -msgid "Warning: Shows cannot be re-linked" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:187 -msgid "" -"By linking your repeating shows any media items scheduled in any repeat show" -" will also get scheduled in the other repeat shows" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:188 -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 "" - -#: airtime_mvc/application/controllers/LocaleController.php:192 -msgid "Show" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:193 -msgid "Show is empty" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:194 -msgid "1m" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:195 -msgid "5m" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:196 -msgid "10m" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:197 -msgid "15m" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:198 -msgid "30m" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:199 -msgid "60m" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:201 -msgid "Retreiving data from the server..." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:207 -msgid "This show has no scheduled content." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:208 -msgid "This show is not completely filled with content." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:212 -msgid "January" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:213 -msgid "February" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:214 -msgid "March" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:215 -msgid "April" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:216 -#: airtime_mvc/application/controllers/LocaleController.php:228 -msgid "May" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:217 -msgid "June" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:218 -msgid "July" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:219 -msgid "August" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:220 -msgid "September" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:221 -msgid "October" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:222 -msgid "November" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:223 -msgid "December" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:224 -msgid "Jan" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:225 -msgid "Feb" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:226 -msgid "Mar" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:227 -msgid "Apr" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:229 -msgid "Jun" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:230 -msgid "Jul" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:231 -msgid "Aug" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:232 -msgid "Sep" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:233 -msgid "Oct" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:234 -msgid "Nov" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:235 -msgid "Dec" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:236 -msgid "today" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:237 -msgid "day" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:238 -msgid "week" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:239 -msgid "month" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:240 -#: airtime_mvc/application/forms/GeneralPreferences.php:123 -#: airtime_mvc/application/forms/GeneralPreferences.php:172 -msgid "Sunday" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:241 -#: airtime_mvc/application/forms/GeneralPreferences.php:124 -#: airtime_mvc/application/forms/GeneralPreferences.php:173 -msgid "Monday" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:242 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -#: airtime_mvc/application/forms/GeneralPreferences.php:174 -msgid "Tuesday" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:243 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -#: airtime_mvc/application/forms/GeneralPreferences.php:175 -msgid "Wednesday" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:244 -#: airtime_mvc/application/forms/GeneralPreferences.php:127 -#: airtime_mvc/application/forms/GeneralPreferences.php:176 -msgid "Thursday" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:245 -#: airtime_mvc/application/forms/GeneralPreferences.php:128 -#: airtime_mvc/application/forms/GeneralPreferences.php:177 -msgid "Friday" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:246 -#: airtime_mvc/application/forms/GeneralPreferences.php:129 -#: airtime_mvc/application/forms/GeneralPreferences.php:178 -msgid "Saturday" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:247 -#: airtime_mvc/application/forms/AddShowRepeats.php:35 -msgid "Sun" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:248 -#: airtime_mvc/application/forms/AddShowRepeats.php:36 -msgid "Mon" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:249 -#: airtime_mvc/application/forms/AddShowRepeats.php:37 -msgid "Tue" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:250 -#: airtime_mvc/application/forms/AddShowRepeats.php:38 -msgid "Wed" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:251 -#: airtime_mvc/application/forms/AddShowRepeats.php:39 -msgid "Thu" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:252 -#: airtime_mvc/application/forms/AddShowRepeats.php:40 -msgid "Fri" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:253 -#: airtime_mvc/application/forms/AddShowRepeats.php:41 -msgid "Sat" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:254 -msgid "" -"Shows longer than their scheduled time will be cut off by a following show." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:255 -msgid "Cancel Current Show?" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:256 -#: airtime_mvc/application/controllers/LocaleController.php:300 -msgid "Stop recording current show?" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:257 -msgid "Ok" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:258 -msgid "Contents of Show" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:261 -msgid "Remove all content?" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:263 -msgid "Delete selected item(s)?" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:265 -msgid "End" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:266 -msgid "Duration" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:276 -msgid "Show Empty" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:277 -msgid "Recording From Line In" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:278 -msgid "Track preview" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:282 -msgid "Cannot schedule outside a show." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:283 -msgid "Moving 1 Item" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:284 -#, php-format -msgid "Moving %s Items" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:286 -#: airtime_mvc/application/controllers/LocaleController.php:309 -#: airtime_mvc/application/forms/EditHistory.php:141 -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/forms/EditAudioMD.php:192 -msgid "Cancel" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:287 -msgid "Fade Editor" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:288 -msgid "Cue Editor" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:289 -msgid "" -"Waveform features are available in a browser supporting the Web Audio API" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:292 -msgid "Select all" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:293 -msgid "Select none" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:294 -msgid "Remove overbooked tracks" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:295 -msgid "Remove selected scheduled items" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:296 -msgid "Jump to the current playing track" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:297 -msgid "Cancel current show" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:302 -msgid "Open library to add or remove content" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:305 -msgid "in use" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:306 -msgid "Disk" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:308 -msgid "Look in" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:310 -msgid "Open" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:312 -#: airtime_mvc/application/forms/AddUser.php:98 -msgid "Admin" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:313 -#: airtime_mvc/application/forms/AddUser.php:96 -msgid "DJ" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:314 -#: airtime_mvc/application/forms/AddUser.php:97 -msgid "Program Manager" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:315 -#: airtime_mvc/application/forms/AddUser.php:95 -msgid "Guest" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:316 -msgid "Guests can do the following:" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:317 -msgid "View schedule" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:318 -msgid "View show content" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:319 -msgid "DJs can do the following:" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:320 -msgid "Manage assigned show content" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:321 -msgid "Import media files" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:322 -msgid "Create playlists, smart blocks, and webstreams" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:323 -msgid "Manage their own library content" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:324 -msgid "Progam Managers can do the following:" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:325 -msgid "View and manage show content" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:326 -msgid "Schedule shows" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:327 -msgid "Manage all library content" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:328 -msgid "Admins can do the following:" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:329 -msgid "Manage preferences" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:330 -msgid "Manage users" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:331 -msgid "Manage watched folders" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:332 -#: airtime_mvc/application/forms/SupportSettings.php:112 -#: airtime_mvc/application/forms/RegisterAirtime.php:116 -#: airtime_mvc/application/forms/SupportSettings.php:111 -msgid "Send support feedback" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:333 -msgid "View system status" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:334 -msgid "Access playout history" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:335 -msgid "View listener stats" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:337 -msgid "Show / hide columns" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:339 -msgid "From {from} to {to}" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:340 -msgid "kbps" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:341 -msgid "yyyy-mm-dd" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:342 -msgid "hh:mm:ss.t" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:343 -msgid "kHz" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:346 -msgid "Su" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:347 -msgid "Mo" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:348 -msgid "Tu" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:349 -msgid "We" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:350 -msgid "Th" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:351 -msgid "Fr" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:352 -msgid "Sa" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:355 -msgid "Hour" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:356 -msgid "Minute" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:357 -msgid "Done" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:360 -msgid "Select files" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:361 -#: airtime_mvc/application/controllers/LocaleController.php:362 -msgid "Add files to the upload queue and click the start button." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:365 -msgid "Add Files" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:366 -msgid "Stop Upload" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:367 -msgid "Start upload" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:368 -msgid "Add files" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:369 -#, php-format -msgid "Uploaded %d/%d files" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:370 -msgid "N/A" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:371 -msgid "Drag files here." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:372 -msgid "File extension error." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:373 -msgid "File size error." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:374 -msgid "File count error." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:375 -msgid "Init error." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:376 -msgid "HTTP Error." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:377 -msgid "Security error." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:378 -msgid "Generic error." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:379 -msgid "IO error." -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:380 -#, php-format -msgid "File: %s" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:382 -#, php-format -msgid "%d files queued" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:383 -msgid "File: %f, size: %s, max file size: %m" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:384 -msgid "Upload URL might be wrong or doesn't exist" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:385 -msgid "Error: File too large: " -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:386 -msgid "Error: Invalid file extension: " -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:389 -msgid "Create Entry" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:390 -msgid "Edit History Record" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:393 -#, php-format -msgid "Copied %s row%s to the clipboard" -msgstr "" - -#: airtime_mvc/application/controllers/LocaleController.php:394 -#, php-format -msgid "" -"%sPrint view%sPlease use your browser's print function to print this table. " -"Press escape when finished." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:34 -#: airtime_mvc/application/controllers/LoginController.php:42 -msgid "Please enter your user name and password" -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:77 -#: airtime_mvc/application/controllers/LoginController.php:92 -msgid "Wrong username or password provided. Please try again." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:142 -#: airtime_mvc/application/controllers/LoginController.php:159 -msgid "" -"Email could not be sent. Check your mail server settings and ensure it has " -"been configured properly." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:145 -#: airtime_mvc/application/controllers/LoginController.php:162 -msgid "Given email not found." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:74 -#: airtime_mvc/application/controllers/PreferenceController.php:62 -msgid "Preferences updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:125 -#: airtime_mvc/application/controllers/PreferenceController.php:104 -msgid "Support setting updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:137 -#: airtime_mvc/application/configs/navigation.php:70 -#: airtime_mvc/application/controllers/PreferenceController.php:116 -msgid "Support Feedback" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:332 -#: airtime_mvc/application/controllers/PreferenceController.php:273 -msgid "Stream Setting Updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:365 -#: airtime_mvc/application/controllers/PreferenceController.php:306 -msgid "path should be specified" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:460 -#: airtime_mvc/application/controllers/PreferenceController.php:401 -msgid "Problem with Liquidsoap..." -msgstr "" - -#: airtime_mvc/application/controllers/ShowbuilderController.php:196 -#: airtime_mvc/application/controllers/ShowbuilderController.php:204 -msgid "Select cursor" -msgstr "" - -#: airtime_mvc/application/controllers/ShowbuilderController.php:197 -#: airtime_mvc/application/controllers/ShowbuilderController.php:205 -msgid "Remove cursor" -msgstr "" - -#: airtime_mvc/application/controllers/ShowbuilderController.php:216 -#: airtime_mvc/application/controllers/ShowbuilderController.php:224 -msgid "show does not exist" -msgstr "" - -#: airtime_mvc/application/controllers/WebstreamController.php:29 -#: airtime_mvc/application/controllers/WebstreamController.php:33 -msgid "Untitled Webstream" -msgstr "" - -#: airtime_mvc/application/controllers/WebstreamController.php:138 -msgid "Webstream saved." -msgstr "" - -#: airtime_mvc/application/controllers/WebstreamController.php:146 -msgid "Invalid form values." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:48 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:123 -msgid "You cannot add tracks to dynamic blocks." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:144 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:157 -msgid "You can only add tracks to smart block." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:175 -msgid "Untitled Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:177 -msgid "Untitled Smart Block" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:495 -msgid "Unknown Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/ErrorController.php:17 -msgid "Page not found" -msgstr "" - -#: airtime_mvc/application/controllers/ErrorController.php:22 -msgid "Application error" -msgstr "" - -#: airtime_mvc/application/controllers/UserController.php:82 -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "" - -#: airtime_mvc/application/controllers/UserController.php:84 -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "" - -#: airtime_mvc/application/controllers/UserController.php:154 -#: airtime_mvc/application/controllers/UserController.php:162 -msgid "Settings updated successfully!" -msgstr "" - -#: airtime_mvc/application/common/DateHelper.php:213 -#, php-format -msgid "The year %s must be within the range of 1753 - 9999" -msgstr "" - -#: airtime_mvc/application/common/DateHelper.php:216 -#, php-format -msgid "%s-%s-%s is not a valid date" -msgstr "" - -#: airtime_mvc/application/common/DateHelper.php:240 -#, php-format -msgid "%s:%s:%s is not a valid time" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "" - -#: airtime_mvc/application/forms/AddUser.php:25 -#: airtime_mvc/application/forms/Login.php:19 -#: airtime_mvc/application/forms/EditUser.php:32 -msgid "Username:" -msgstr "" - -#: airtime_mvc/application/forms/AddUser.php:34 -#: airtime_mvc/application/forms/Login.php:34 -#: airtime_mvc/application/forms/EditUser.php:43 -#: airtime_mvc/application/forms/BillingClient.php:172 -msgid "Password:" -msgstr "" - -#: airtime_mvc/application/forms/AddUser.php:42 -#: airtime_mvc/application/forms/EditUser.php:52 -#: airtime_mvc/application/forms/BillingClient.php:181 -msgid "Verify Password:" -msgstr "" - -#: airtime_mvc/application/forms/AddUser.php:51 -#: airtime_mvc/application/forms/EditUser.php:62 -msgid "Firstname:" -msgstr "" - -#: airtime_mvc/application/forms/AddUser.php:57 -#: airtime_mvc/application/forms/EditUser.php:70 -msgid "Lastname:" -msgstr "" - -#: airtime_mvc/application/forms/AddUser.php:63 -#: airtime_mvc/application/forms/SupportSettings.php:46 -#: airtime_mvc/application/forms/EditUser.php:78 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:45 -msgid "Email:" -msgstr "" - -#: airtime_mvc/application/forms/AddUser.php:72 -#: airtime_mvc/application/forms/EditUser.php:89 -msgid "Mobile Phone:" -msgstr "" - -#: airtime_mvc/application/forms/AddUser.php:78 -#: airtime_mvc/application/forms/EditUser.php:97 -msgid "Skype:" -msgstr "" - -#: airtime_mvc/application/forms/AddUser.php:84 -#: airtime_mvc/application/forms/EditUser.php:105 -msgid "Jabber:" -msgstr "" - -#: airtime_mvc/application/forms/AddUser.php:91 -msgid "User Type:" -msgstr "" - -#: airtime_mvc/application/forms/AddUser.php:116 -#: airtime_mvc/application/forms/EditUser.php:135 -msgid "Login name is not unique." -msgstr "" - -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 -msgid "Auto Switch Off" -msgstr "" - -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:26 -msgid "Auto Switch On" -msgstr "" - -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:33 -msgid "Switch Transition Fade (s)" -msgstr "" - -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:36 -msgid "enter a time in seconds 00{.000000}" -msgstr "" - -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:45 -msgid "Master Username" -msgstr "" - -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:62 -msgid "Master Password" -msgstr "" - -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:70 -msgid "Master Source Connection URL" -msgstr "" - -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:78 -msgid "Show Source Connection URL" -msgstr "" - -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:87 -msgid "Master Source Port" -msgstr "" - -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:90 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:109 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:112 -msgid "Only numbers are allowed." -msgstr "" - -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:96 -msgid "Master Source Mount Point" -msgstr "" - -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:99 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:118 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:100 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:123 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:144 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:198 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:210 -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: airtime_mvc/application/forms/DateRange.php:35 -#: airtime_mvc/application/forms/DateRange.php:63 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -msgid "Invalid character entered" -msgstr "" - -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:106 -msgid "Show Source Port" -msgstr "" - -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:115 -msgid "Show Source Mount Point" -msgstr "" - -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:153 -msgid "You cannot use same port as Master DJ port." -msgstr "" - -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:164 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:182 -#, php-format -msgid "Port %s is not available" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhen.php:16 -msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhen.php:22 -msgid "Date/Time Start:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhen.php:49 -msgid "Date/Time End:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhen.php:74 -msgid "Duration:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhen.php:83 -msgid "Timezone:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhen.php:92 -msgid "Repeats?" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhen.php:124 -msgid "Cannot create show in the past" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhen.php:132 -msgid "Cannot modify start date/time of the show that is already started" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhen.php:149 -msgid "Cannot have duration < 0m" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhen.php:153 -msgid "Cannot have duration 00h 00m" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhen.php:160 -msgid "Cannot have duration greater than 24h" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRepeats.php:10 -msgid "Link:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRepeats.php:16 -msgid "Repeat Type:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRepeats.php:19 -msgid "weekly" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRepeats.php:20 -msgid "every 2 weeks" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRepeats.php:21 -msgid "every 3 weeks" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRepeats.php:22 -msgid "every 4 weeks" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRepeats.php:23 -msgid "monthly" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRepeats.php:32 -msgid "Select Days:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRepeats.php:47 -msgid "Repeat By:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRepeats.php:50 -msgid "day of the month" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRepeats.php:50 -msgid "day of the week" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 -#: airtime_mvc/application/forms/ShowBuilder.php:46 -msgid "Date End:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRepeats.php:69 -msgid "No End?" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRepeats.php:106 -msgid "End date must be after start date" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRepeats.php:113 -msgid "Please select a repeat day" -msgstr "" - -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "" - -#: airtime_mvc/application/forms/PasswordChange.php:17 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:120 -#: airtime_mvc/application/forms/EmailServerPreferences.php:82 -#: airtime_mvc/application/forms/EmailServerPreferences.php:81 -msgid "Password" -msgstr "" - -#: airtime_mvc/application/forms/PasswordChange.php:28 -msgid "Confirm new password" -msgstr "" - -#: airtime_mvc/application/forms/PasswordChange.php:36 -msgid "Password confirmation does not match your password." -msgstr "" - -#: airtime_mvc/application/forms/PasswordChange.php:43 -msgid "Get new password" -msgstr "" - -#: airtime_mvc/application/forms/SupportSettings.php:21 -#: airtime_mvc/application/forms/GeneralPreferences.php:21 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/GeneralPreferences.php:20 -#: airtime_mvc/application/forms/SupportSettings.php:20 -msgid "Station Name" -msgstr "" - -#: airtime_mvc/application/forms/SupportSettings.php:34 -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:33 -msgid "Phone:" -msgstr "" - -#: airtime_mvc/application/forms/SupportSettings.php:57 -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:56 -msgid "Station Web Site:" -msgstr "" - -#: airtime_mvc/application/forms/SupportSettings.php:68 -#: airtime_mvc/application/forms/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/BillingClient.php:102 -#: airtime_mvc/application/forms/SupportSettings.php:67 -msgid "Country:" -msgstr "" - -#: airtime_mvc/application/forms/SupportSettings.php:79 -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/BillingClient.php:70 -#: airtime_mvc/application/forms/SupportSettings.php:78 -msgid "City:" -msgstr "" - -#: airtime_mvc/application/forms/SupportSettings.php:91 -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:90 -msgid "Station Description:" -msgstr "" - -#: airtime_mvc/application/forms/SupportSettings.php:101 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 -#: airtime_mvc/application/forms/SupportSettings.php:100 -msgid "Station Logo:" -msgstr "" - -#: airtime_mvc/application/forms/SupportSettings.php:122 -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:121 -msgid "Promote my station on Sourcefabric.org" -msgstr "" - -#: airtime_mvc/application/forms/SupportSettings.php:148 -#: airtime_mvc/application/forms/RegisterAirtime.php:149 -#: airtime_mvc/application/forms/SupportSettings.php:133 -#, php-format -msgid "By checking this box, I agree to Sourcefabric's %sprivacy policy%s." -msgstr "" - -#: airtime_mvc/application/forms/SupportSettings.php:171 -#: airtime_mvc/application/forms/RegisterAirtime.php:166 -#: airtime_mvc/application/forms/SupportSettings.php:155 -msgid "You have to agree to privacy policy." -msgstr "" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "" -"'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:48 -msgid "Enabled:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:57 -msgid "Stream Type:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:77 -msgid "Service Type:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:87 -msgid "Channels:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:88 -msgid "1 - Mono" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:88 -msgid "2 - Stereo" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:97 -msgid "Server" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:109 -#: airtime_mvc/application/forms/EmailServerPreferences.php:100 -#: airtime_mvc/application/forms/EmailServerPreferences.php:99 -msgid "Port" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:141 -msgid "URL" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:171 -msgid "Mount Point" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:195 -msgid "Admin User" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:207 -msgid "Admin Password" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:232 -msgid "Server cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:237 -msgid "Port cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:243 -msgid "Mount cannot be empty with Icecast server." -msgstr "" - -#: airtime_mvc/application/forms/StreamSetting.php:22 -msgid "Hardware Audio Output" -msgstr "" - -#: airtime_mvc/application/forms/StreamSetting.php:33 -msgid "Output Type" -msgstr "" - -#: airtime_mvc/application/forms/StreamSetting.php:44 -#: airtime_mvc/application/forms/StreamSetting.php:22 -msgid "Icecast Vorbis Metadata" -msgstr "" - -#: airtime_mvc/application/forms/StreamSetting.php:54 -#: airtime_mvc/application/forms/StreamSetting.php:32 -msgid "Stream Label:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSetting.php:55 -#: airtime_mvc/application/forms/StreamSetting.php:33 -msgid "Artist - Title" -msgstr "" - -#: airtime_mvc/application/forms/StreamSetting.php:56 -#: airtime_mvc/application/forms/StreamSetting.php:34 -msgid "Show - Artist - Title" -msgstr "" - -#: airtime_mvc/application/forms/StreamSetting.php:57 -#: airtime_mvc/application/forms/StreamSetting.php:35 -msgid "Station name - Show name" -msgstr "" - -#: airtime_mvc/application/forms/StreamSetting.php:63 -#: airtime_mvc/application/forms/StreamSetting.php:41 -msgid "Off Air Metadata" -msgstr "" - -#: airtime_mvc/application/forms/StreamSetting.php:69 -#: airtime_mvc/application/forms/StreamSetting.php:47 -msgid "Enable Replay Gain" -msgstr "" - -#: airtime_mvc/application/forms/StreamSetting.php:75 -#: airtime_mvc/application/forms/StreamSetting.php:53 -msgid "Replay Gain Modifier" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "" - -#: airtime_mvc/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "" - -#: airtime_mvc/application/forms/EmailServerPreferences.php:17 -#: airtime_mvc/application/forms/EmailServerPreferences.php:16 -msgid "Enable System Emails (Password Reset)" -msgstr "" - -#: airtime_mvc/application/forms/EmailServerPreferences.php:27 -#: airtime_mvc/application/forms/EmailServerPreferences.php:26 -msgid "Reset Password 'From' Email" -msgstr "" - -#: airtime_mvc/application/forms/EmailServerPreferences.php:34 -#: airtime_mvc/application/forms/EmailServerPreferences.php:33 -msgid "Configure Mail Server" -msgstr "" - -#: airtime_mvc/application/forms/EmailServerPreferences.php:43 -#: airtime_mvc/application/forms/EmailServerPreferences.php:42 -msgid "Requires Authentication" -msgstr "" - -#: airtime_mvc/application/forms/EmailServerPreferences.php:53 -#: airtime_mvc/application/forms/EmailServerPreferences.php:52 -msgid "Mail Server" -msgstr "" - -#: airtime_mvc/application/forms/EmailServerPreferences.php:67 -#: airtime_mvc/application/forms/EmailServerPreferences.php:66 -msgid "Email Address" -msgstr "" - -#: airtime_mvc/application/forms/Login.php:83 -msgid "Type the characters you see in the picture below." -msgstr "" - -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "" - -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "" - -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:10 -msgid "Use Airtime Authentication:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:16 -msgid "Use Custom Authentication:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:39 -msgid "Custom Password" -msgstr "" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:63 -msgid "Username field cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:68 -msgid "Password field cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/DateRange.php:16 -#: airtime_mvc/application/forms/ShowBuilder.php:18 -msgid "Date Start:" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:33 -#: airtime_mvc/application/forms/GeneralPreferences.php:32 -msgid "Default Crossfade Duration (s):" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:40 -#: airtime_mvc/application/forms/GeneralPreferences.php:59 -#: airtime_mvc/application/forms/GeneralPreferences.php:78 -#: airtime_mvc/application/forms/GeneralPreferences.php:39 -#: airtime_mvc/application/forms/GeneralPreferences.php:58 -#: airtime_mvc/application/forms/GeneralPreferences.php:77 -msgid "enter a time in seconds 0{.0}" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:52 -#: airtime_mvc/application/forms/GeneralPreferences.php:51 -msgid "Default Fade In (s):" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:71 -#: airtime_mvc/application/forms/GeneralPreferences.php:70 -msgid "Default Fade Out (s):" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:89 -#: airtime_mvc/application/forms/GeneralPreferences.php:88 -#, php-format -msgid "" -"Allow Remote Websites To Access \"Schedule\" Info?%s (Enable this to make " -"front-end widgets work.)" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:90 -#: airtime_mvc/application/forms/GeneralPreferences.php:89 -msgid "Disabled" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:91 -#: airtime_mvc/application/forms/GeneralPreferences.php:90 -msgid "Enabled" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:97 -#: airtime_mvc/application/forms/GeneralPreferences.php:110 -msgid "Default Interface Language" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:105 -#: airtime_mvc/application/forms/GeneralPreferences.php:118 -msgid "Station Timezone" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:113 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Week Starts On" -msgstr "" - -#: airtime_mvc/application/forms/EditUser.php:121 -msgid "Interface Timezone:" -msgstr "" - -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "E-mail" -msgstr "" - -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Restore password" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:118 -msgid "hours" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:119 -msgid "minutes" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 -msgid "Set smart block type:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:170 -msgid "Static" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:171 -msgid "Dynamic" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:285 -msgid "Allow Repeat Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:302 -msgid "Limit to" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:324 -msgid "Generate playlist content and save criteria" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Generate" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:332 -msgid "Shuffle playlist content" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:500 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:512 -msgid "Limit cannot be empty or smaller than 0" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:505 -msgid "Limit cannot be more than 24 hrs" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:515 -msgid "The value should be an integer" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:518 -msgid "500 is the max item limit value you can set" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -msgid "You must select Criteria and Modifier" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:536 -msgid "'Length' should be in '00:00:00' format" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:554 -msgid "" -"The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 " -"00:00:00)" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:568 -msgid "The value has to be numeric" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:573 -msgid "The value should be less then 2147483648" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 -#, php-format -msgid "The value should be less than %s characters" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:585 -msgid "Value cannot be empty" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:72 -msgid "Show:" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "" - -#: airtime_mvc/application/forms/EditAudioMD.php:112 -#: airtime_mvc/application/forms/EditAudioMD.php:151 -msgid "ISRC Number:" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:16 -msgid "Automatically Upload Recorded Shows" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:26 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:16 -msgid "Enable SoundCloud Upload" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:36 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:26 -msgid "Automatically Mark Files \"Downloadable\" on SoundCloud" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:47 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:37 -msgid "SoundCloud Email" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:67 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:57 -msgid "SoundCloud Password" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:87 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:77 -msgid "SoundCloud Tags: (separate tags with spaces)" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:99 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:89 -msgid "Default Genre:" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:109 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:99 -msgid "Default Track Type:" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:113 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:103 -msgid "Original" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:114 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:104 -msgid "Remix" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:115 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:105 -msgid "Live" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:116 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:106 -msgid "Recording" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:117 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:107 -msgid "Spoken" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:118 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:108 -msgid "Podcast" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:119 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:109 -msgid "Demo" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:120 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:110 -msgid "Work in progress" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:121 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:111 -msgid "Stem" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:122 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:112 -msgid "Loop" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:123 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:113 -msgid "Sound Effect" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:124 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:114 -msgid "One Shot Sample" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:125 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:115 -msgid "Other" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:133 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:123 -msgid "Default License:" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:137 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:127 -msgid "The work is in the public domain" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:138 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:128 -msgid "All rights are reserved" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:139 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:129 -msgid "Creative Commons Attribution" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:140 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:130 -msgid "Creative Commons Attribution Noncommercial" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:141 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:131 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:142 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:132 -msgid "Creative Commons Attribution Share Alike" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:143 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:133 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "" - -#: airtime_mvc/application/forms/SoundcloudPreferences.php:144 -#: airtime_mvc/application/forms/SoundcloudPreferences.php:134 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:10 -msgid "Background Colour:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:29 -msgid "Text Colour:" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:12 -msgid "Now Playing" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:19 -msgid "Add Media" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:26 -msgid "Library" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:33 -msgid "Calendar" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:40 -msgid "System" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:50 -msgid "Users" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:57 -msgid "Media Folders" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:64 -msgid "Streams" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:83 -msgid "Listener Stats" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:92 -msgid "History" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:97 -msgid "Playout History" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:104 -msgid "History Templates" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:118 -msgid "Getting Started" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:125 -msgid "User Manual" -msgstr "" - -#: airtime_mvc/library/propel/contrib/pear/HTML_QuickForm_Propel/Propel.php:512 -msgid "Please selection an option" -msgstr "" - -#: airtime_mvc/library/propel/contrib/pear/HTML_QuickForm_Propel/Propel.php:531 -msgid "No Records" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/login.phtml:16 -#, php-format -msgid "" -"Airtime copyright © Sourcefabric z.ú. All rights reserved.%sMaintained " -"and distributed under the GNU GPL v.3 by %sSourcefabric z.ú.%s" -msgstr "" - -#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:15 -msgid "Plan type:" -msgstr "" - -#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:27 -msgid "Billing cycle:" -msgstr "" - -#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:35 -msgid "Payment method:" -msgstr "" - -#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:38 -msgid "PayPal" -msgstr "" - -#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:39 -msgid "Credit Card via 2Checkout" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:17 -msgid "First Name:" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:26 -msgid "Last Name:" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:35 -msgid "Company Name:" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:44 -msgid "Email Address:" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:54 -msgid "Address 1:" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:63 -msgid "Address 2:" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:80 -msgid "State/Region:" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:89 -msgid "Zip Code / Postal Code:" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:112 -msgid "Phone Number:" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:121 -msgid "Please choose a security question:" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:126 -msgid "What is the name of your favorite childhood friend?" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:127 -msgid "What school did you attend for sixth grade?" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:128 -msgid "In what city did you meet your spouse/significant other?" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:129 -msgid "What street did you live on in third grade?" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:130 -msgid "What is the first name of the boy or girl that you first kissed?" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:131 -msgid "In what city or town was your first job?" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:135 -msgid "Please enter an answer:" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:152 -msgid "VAT/Tax ID (EU only)" -msgstr "" - -#: airtime_mvc/application/forms/BillingClient.php:162 -msgid "Subscribe to Sourcefabric newsletter" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:139 -msgid "Billing" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:144 -msgid "Account Details" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:151 -#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171 -msgid "Account Plans" -msgstr "" - -#: airtime_mvc/application/configs/navigation.php:158 -msgid "View Invoices" -msgstr "" - -#: airtime_mvc/application/views/scripts/plupload/index.phtml:26 -msgid "Failed" -msgstr "" - -#: airtime_mvc/application/views/scripts/plupload/index.phtml:27 -msgid "Pending" -msgstr "" - -#: airtime_mvc/application/views/scripts/plupload/index.phtml:30 -msgid "Recent Uploads" -msgstr "" - -#: airtime_mvc/application/views/scripts/dashboard/about.phtml:13 -#, php-format -msgid "%sSourcefabric%s z.ú Airtime is distributed under the %sGNU GPL v.3%s" -msgstr "" - -#: airtime_mvc/application/views/scripts/login/index.phtml:7 -msgid "" -"Welcome to the Airtime demo! You can log in using the username 'admin' and " -"the password 'admin'." -msgstr "" - -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9 -msgid "Purchase an Airtime Pro plan!" -msgstr "" - -#: airtime_mvc/application/views/scripts/billing/invoices.phtml:6 -msgid "" -"Thank you! Your plan has been updated and you will be invoiced during" -" your next billing cycle." -msgstr "" - -#: airtime_mvc/application/views/scripts/billing/invoices.phtml:10 -msgid "" -"Tip: To pay an invoice, click \"View Invoice\"
and look for the " -"\"Checkout\" button." -msgstr "" - -#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172 -msgid "Upgrade today to get more listeners and storage space!" -msgstr "" - -#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:254 -msgid "View Plans" -msgstr "" - -#: airtime_mvc/application/views/scripts/user/add-user.phtml:30 -#, php-format -msgid "" -"Super Admin details can be changed in your Billing " -"Settings." -msgstr "" - -#: airtime_mvc/application/models/Scheduler.php:195 -msgid "Cannot schedule a playlist that contains missing files." -msgstr "" From 68cd5b027ab6580c164f6a360ccbd09dba4dc377 Mon Sep 17 00:00:00 2001 From: Albert Santoni Date: Wed, 18 Feb 2015 15:56:28 -0500 Subject: [PATCH 10/35] CC-5998: Prevent users from spamming the delete button in the library --- airtime_mvc/public/js/airtime/library/library.js | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/airtime_mvc/public/js/airtime/library/library.js b/airtime_mvc/public/js/airtime/library/library.js index 23b517d6b7..fbe7cb5d59 100644 --- a/airtime_mvc/public/js/airtime/library/library.js +++ b/airtime_mvc/public/js/airtime/library/library.js @@ -316,15 +316,24 @@ var AIRTIME = (function(AIRTIME) { }; mod.fnDeleteItems = function(aMedia) { - + + //Prevent the user from spamming the delete button while the AJAX request is in progress + AIRTIME.button.disableButton("btn-group #sb-trash", false); + //Hack to immediately show the "Processing" div in DataTables to give the user some sort of feedback. + $(".dataTables_processing").css('visibility','visible'); + $.post(baseUrl+"library/delete", {"format": "json", "media": aMedia}, function(json){ if (json.message !== undefined) { alert(json.message); } + chosenItems = {}; oTable.fnStandingRedraw(); + + //Re-enable the delete button + AIRTIME.button.enableButton("btn-group #sb-trash", false); }); }; From 961cdfc2ee3c547b65f40b4e3f4d6ebe68c9456f Mon Sep 17 00:00:00 2001 From: Albert Santoni Date: Wed, 18 Feb 2015 19:40:27 -0500 Subject: [PATCH 11/35] CC-5849: Audio preview audio/x-wav exception --- .../application/controllers/AudiopreviewController.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/airtime_mvc/application/controllers/AudiopreviewController.php b/airtime_mvc/application/controllers/AudiopreviewController.php index af5e7fa0d2..4f23633f66 100644 --- a/airtime_mvc/application/controllers/AudiopreviewController.php +++ b/airtime_mvc/application/controllers/AudiopreviewController.php @@ -208,6 +208,8 @@ private function createElementMap($track) $elementMap['element_m4a'] = $track['item_id']; } elseif (strtolower($mime) === 'audio/wav') { $elementMap['element_wav'] = $track['item_id']; + } elseif (strtolower($mime) === 'audio/x-wav') { + $elementMap['element_wav'] = $track['item_id']; } elseif (strtolower($mime) === 'audio/x-flac') { $elementMap['element_flac'] = $track['item_id']; } else { @@ -293,6 +295,8 @@ public function getShowAction() $elementMap['element_m4a'] = $track['item_id']; } elseif (strtolower($mime) === 'audio/wav') { $elementMap['element_wav'] = $track['item_id']; + } elseif (strtolower($mime) === 'audio/x-wav') { + $elementMap['element_wav'] = $track['item_id']; } elseif (strtolower($mime) === 'audio/x-flac') { $elementMap['element_flac'] = $track['item_id']; } else { From b3a46b948fd2c6e334e9dabc04dc939222d7d93c Mon Sep 17 00:00:00 2001 From: Albert Santoni Date: Thu, 19 Feb 2015 09:19:27 -0500 Subject: [PATCH 12/35] CC-5999: Unknown file type: audio/vorbis --- .../application/controllers/AudiopreviewController.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/airtime_mvc/application/controllers/AudiopreviewController.php b/airtime_mvc/application/controllers/AudiopreviewController.php index 4f23633f66..9247dc924c 100644 --- a/airtime_mvc/application/controllers/AudiopreviewController.php +++ b/airtime_mvc/application/controllers/AudiopreviewController.php @@ -204,6 +204,8 @@ private function createElementMap($track) $elementMap['element_mp3'] = $track['item_id']; } elseif (strtolower($mime) === 'audio/ogg') { $elementMap['element_oga'] = $track['item_id']; + } elseif (strtolower($mime) === 'audio/vorbis') { + $elementMap['element_oga'] = $track['item_id']; } elseif (strtolower($mime) === 'audio/mp4') { $elementMap['element_m4a'] = $track['item_id']; } elseif (strtolower($mime) === 'audio/wav') { @@ -291,6 +293,8 @@ public function getShowAction() $elementMap['element_mp3'] = $track['item_id']; } elseif (strtolower($mime) === 'audio/ogg') { $elementMap['element_oga'] = $track['item_id']; + } elseif (strtolower($mime) === 'audio/vorbis') { + $elementMap['element_oga'] = $track['item_id']; } elseif (strtolower($mime) === 'audio/mp4') { $elementMap['element_m4a'] = $track['item_id']; } elseif (strtolower($mime) === 'audio/wav') { From 19851efbe5ef4b6e45eae2113ff46c0ddb8ab929 Mon Sep 17 00:00:00 2001 From: localizer Date: Fri, 20 Feb 2015 11:24:14 +0000 Subject: [PATCH 13/35] updated translation resources --- airtime_mvc/locale/az/LC_MESSAGES/airtime.mo | Bin 474 -> 474 bytes airtime_mvc/locale/az/LC_MESSAGES/airtime.po | 2 +- .../locale/de_AT/LC_MESSAGES/airtime.mo | Bin 63465 -> 63465 bytes .../locale/de_AT/LC_MESSAGES/airtime.po | 2 +- .../locale/en_GB/LC_MESSAGES/airtime.mo | Bin 61416 -> 61416 bytes .../locale/en_GB/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/hy/LC_MESSAGES/airtime.mo | Bin 0 -> 427 bytes airtime_mvc/locale/hy/LC_MESSAGES/airtime.po | 4332 ++++++++++++++++ .../locale/hy_AM/LC_MESSAGES/airtime.mo | Bin 487 -> 487 bytes .../locale/hy_AM/LC_MESSAGES/airtime.po | 2 +- .../locale/ja_JP/LC_MESSAGES/airtime.mo | Bin 0 -> 434 bytes .../locale/ja_JP/LC_MESSAGES/airtime.po | 4333 +++++++++++++++++ airtime_mvc/locale/ka/LC_MESSAGES/airtime.mo | Bin 464 -> 464 bytes airtime_mvc/locale/ka/LC_MESSAGES/airtime.po | 2 +- .../locale/pt_BR/LC_MESSAGES/airtime.mo | Bin 57870 -> 57870 bytes .../locale/pt_BR/LC_MESSAGES/airtime.po | 2 +- 16 files changed, 8671 insertions(+), 6 deletions(-) create mode 100644 airtime_mvc/locale/hy/LC_MESSAGES/airtime.mo create mode 100644 airtime_mvc/locale/hy/LC_MESSAGES/airtime.po create mode 100644 airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.mo create mode 100644 airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po diff --git a/airtime_mvc/locale/az/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/az/LC_MESSAGES/airtime.mo index 11418ce7c4c877e221ed1499e0fc8271a020a80d..86c47eebc4e10ea9d8209f3249c995fa6ba21cbc 100644 GIT binary patch delta 12 Tcmcb`e2aO)21fIZ8#NgLB9{ce delta 12 Tcmcb`e2aO)21e738#NgLB8>#S diff --git a/airtime_mvc/locale/az/LC_MESSAGES/airtime.po b/airtime_mvc/locale/az/LC_MESSAGES/airtime.po index eb0d2081d9..4ed163e022 100644 --- a/airtime_mvc/locale/az/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/az/LC_MESSAGES/airtime.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-02-05 10:31+0000\n" +"PO-Revision-Date: 2015-02-07 10:31+0000\n" "Last-Translator: Daniel James \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/airtime/language/az/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.mo index 80674795acda31540b5a6f803f59320bedaf5238..2740f9b336077af03bf3ff4fdfd54a4abe063513 100644 GIT binary patch delta 16 YcmaF)p84f_<_%vaGn#MyI{8a7092_7xBvhE delta 16 YcmaF)p84f_<_%vaGn#JxI{8a7092g`wg3PC diff --git a/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po b/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po index 90e9411cd9..3b7ba6385b 100644 --- a/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-02-05 10:31+0000\n" +"PO-Revision-Date: 2015-02-07 10:31+0000\n" "Last-Translator: Daniel James \n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/airtime/language/de_AT/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.mo index 12c491259d944cd80e6727c6e1ded861552c03a4..e2dc780f63135c41643fdf2505381857056631b5 100644 GIT binary patch delta 16 YcmaEHpZUdo<_$%&7|k~q&ngWC084`i6951J delta 16 YcmaEHpZUdo<_$%&7)>`9&ngWC084iW5dZ)H diff --git a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po index 73aaaff7c4..89bc00ece8 100644 --- a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-02-05 10:31+0000\n" +"PO-Revision-Date: 2015-02-07 10:31+0000\n" "Last-Translator: Daniel James \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/airtime/language/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/hy/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/hy/LC_MESSAGES/airtime.mo new file mode 100644 index 0000000000000000000000000000000000000000..86b6b14246818440b19fcd4d5b1d3719b7a9c178 GIT binary patch literal 427 zcmYLEO;5r=5XI=JN6#MC!~;Z^Z3)p*tkLk1U?dV#y|3*+*R;EJcM$j?{yl$-Qy}n? zm)&{$X7t-|}X#zt%?wSs~@ z%Mu*B&$iX$ZP(#4Q>LAo@_~BvVksBE6Objvuq9|EHEZUGRV2h}wQ6HMQq5sqw}@(& z-ib=cU1(A4hlqS5THbUr9UT`7+P*h18bMRGO-1`4tWi{jRJza7Tv`Vhzb9iJ9)0zP zbFh4*Q7`T3? literal 0 HcmV?d00001 diff --git a/airtime_mvc/locale/hy/LC_MESSAGES/airtime.po b/airtime_mvc/locale/hy/LC_MESSAGES/airtime.po new file mode 100644 index 0000000000..c7785628d2 --- /dev/null +++ b/airtime_mvc/locale/hy/LC_MESSAGES/airtime.po @@ -0,0 +1,4332 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Airtime\n" +"POT-Creation-Date: \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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +# ENGLISH (en) original strings for Airtime. +# Copyright (C) 2014 Sourcefabric z.ú. +# This file is distributed under the same license as the Airtime package. +# +#: airtime_mvc/application/layouts/scripts/login.phtml:16 +#, php-format +msgid "" +"Airtime Copyright ©Sourcefabric o.p.s. All rights reserved.%sMaintained" +" and distributed under GNU GPL v.3 by %sSourcefabric o.p.s%s" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/bare.phtml:5 +#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2 +#: airtime_mvc/application/layouts/scripts/livestream.phtml:9 +msgid "Live stream" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/audio-player.phtml:5 +#: airtime_mvc/application/controllers/LocaleController.php:30 +msgid "Audio Player" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/layout.phtml:27 +#: airtime_mvc/application/layouts/scripts/layout.phtml:38 +msgid "Logout" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/layout.phtml:42 +#: airtime_mvc/application/layouts/scripts/layout.phtml:68 +#: airtime_mvc/application/layouts/scripts/layout.phtml:53 +#: airtime_mvc/application/layouts/scripts/layout.phtml:79 +msgid "Play" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/layout.phtml:43 +#: airtime_mvc/application/layouts/scripts/layout.phtml:69 +#: airtime_mvc/application/layouts/scripts/layout.phtml:54 +#: airtime_mvc/application/layouts/scripts/layout.phtml:80 +msgid "Stop" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/layout.phtml:47 +#: airtime_mvc/application/models/Block.php:1347 +#: airtime_mvc/application/controllers/LocaleController.php:272 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/layouts/scripts/layout.phtml:58 +msgid "Cue In" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/layout.phtml:49 +#: airtime_mvc/application/layouts/scripts/layout.phtml:60 +msgid "Set Cue In" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/layout.phtml:54 +#: airtime_mvc/application/models/Block.php:1348 +#: airtime_mvc/application/controllers/LocaleController.php:273 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:56 +#: airtime_mvc/application/layouts/scripts/layout.phtml:65 +msgid "Cue Out" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/layout.phtml:56 +#: airtime_mvc/application/layouts/scripts/layout.phtml:67 +msgid "Set Cue Out" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/layout.phtml:73 +#: airtime_mvc/application/layouts/scripts/layout.phtml:84 +msgid "Cursor" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/layout.phtml:74 +#: airtime_mvc/application/controllers/LocaleController.php:274 +#: airtime_mvc/application/layouts/scripts/layout.phtml:85 +msgid "Fade In" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/layout.phtml:75 +#: airtime_mvc/application/controllers/LocaleController.php:275 +#: airtime_mvc/application/layouts/scripts/layout.phtml:86 +msgid "Fade Out" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1105 +#: airtime_mvc/application/services/HistoryService.php:1145 +#: airtime_mvc/application/services/HistoryService.php:1162 +#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6 +#: airtime_mvc/application/models/Block.php:1363 +#: airtime_mvc/application/controllers/LocaleController.php:66 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:71 +#: airtime_mvc/application/services/HistoryService.php:1108 +#: airtime_mvc/application/services/HistoryService.php:1148 +#: airtime_mvc/application/services/HistoryService.php:1165 +msgid "Title" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1106 +#: airtime_mvc/application/services/HistoryService.php:1146 +#: airtime_mvc/application/services/HistoryService.php:1163 +#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7 +#: airtime_mvc/application/models/Block.php:1349 +#: airtime_mvc/application/controllers/LocaleController.php:67 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/services/HistoryService.php:1109 +#: airtime_mvc/application/services/HistoryService.php:1149 +#: airtime_mvc/application/services/HistoryService.php:1166 +msgid "Creator" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1107 +#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8 +#: airtime_mvc/application/models/Block.php:1341 +#: airtime_mvc/application/controllers/LocaleController.php:68 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:49 +#: airtime_mvc/application/services/HistoryService.php:1110 +msgid "Album" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1108 +#: airtime_mvc/application/services/HistoryService.php:1165 +#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9 +#: airtime_mvc/application/models/Block.php:1357 +#: airtime_mvc/application/controllers/LocaleController.php:81 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:65 +#: airtime_mvc/application/services/HistoryService.php:1111 +#: airtime_mvc/application/services/HistoryService.php:1168 +msgid "Length" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1109 +#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10 +#: airtime_mvc/application/models/Block.php:1351 +#: airtime_mvc/application/controllers/LocaleController.php:75 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:132 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 +#: airtime_mvc/application/services/HistoryService.php:1112 +msgid "Genre" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1110 +#: airtime_mvc/application/models/Block.php:1359 +#: airtime_mvc/application/controllers/LocaleController.php:83 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:67 +#: airtime_mvc/application/services/HistoryService.php:1113 +msgid "Mood" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1111 +#: airtime_mvc/application/models/Block.php:1353 +#: airtime_mvc/application/controllers/LocaleController.php:77 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:61 +#: airtime_mvc/application/services/HistoryService.php:1114 +msgid "Label" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1112 +#: airtime_mvc/application/services/HistoryService.php:1166 +#: airtime_mvc/application/models/Block.php:1344 +#: airtime_mvc/application/controllers/LocaleController.php:71 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 +#: airtime_mvc/application/services/HistoryService.php:1115 +#: airtime_mvc/application/services/HistoryService.php:1169 +msgid "Composer" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1113 +#: airtime_mvc/application/models/Block.php:1352 +#: airtime_mvc/application/controllers/LocaleController.php:76 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:60 +#: airtime_mvc/application/services/HistoryService.php:1116 +msgid "ISRC" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1114 +#: airtime_mvc/application/services/HistoryService.php:1167 +#: airtime_mvc/application/models/Block.php:1346 +#: airtime_mvc/application/controllers/LocaleController.php:73 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:54 +#: airtime_mvc/application/services/HistoryService.php:1117 +#: airtime_mvc/application/services/HistoryService.php:1170 +msgid "Copyright" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1115 +#: airtime_mvc/application/models/Block.php:1367 +#: airtime_mvc/application/controllers/LocaleController.php:90 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:75 +#: airtime_mvc/application/services/HistoryService.php:1118 +msgid "Year" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1116 +#: airtime_mvc/application/services/HistoryService.php:1119 +msgid "Track" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1117 +#: airtime_mvc/application/models/Block.php:1345 +#: airtime_mvc/application/controllers/LocaleController.php:72 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:53 +#: airtime_mvc/application/services/HistoryService.php:1120 +msgid "Conductor" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1118 +#: airtime_mvc/application/models/Block.php:1354 +#: airtime_mvc/application/controllers/LocaleController.php:78 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:62 +#: airtime_mvc/application/services/HistoryService.php:1121 +msgid "Language" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1143 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +#: airtime_mvc/application/services/HistoryService.php:1146 +msgid "Start Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1144 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +#: airtime_mvc/application/services/HistoryService.php:1147 +msgid "End Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1164 +#: airtime_mvc/application/services/HistoryService.php:1167 +msgid "Played" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:65 +#: airtime_mvc/application/controllers/LibraryController.php:282 +#: airtime_mvc/application/controllers/LibraryController.php:280 +msgid "View on Soundcloud" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:70 +#: airtime_mvc/application/controllers/LibraryController.php:288 +#: airtime_mvc/application/controllers/LibraryController.php:286 +msgid "Upload to SoundCloud" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:70 +#: airtime_mvc/application/controllers/LibraryController.php:286 +#: airtime_mvc/application/controllers/LibraryController.php:284 +msgid "Re-upload to SoundCloud" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:77 +#: airtime_mvc/application/services/CalendarService.php:121 +#: airtime_mvc/application/services/CalendarService.php:120 +msgid "Show Content" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:93 +#: airtime_mvc/application/services/CalendarService.php:100 +#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:15 +#: airtime_mvc/application/controllers/LocaleController.php:303 +#: airtime_mvc/application/services/CalendarService.php:96 +msgid "Add / Remove Content" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:111 +#: airtime_mvc/application/services/CalendarService.php:109 +msgid "Remove All Content" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:131 +#: airtime_mvc/application/services/CalendarService.php:135 +#: airtime_mvc/application/services/CalendarService.php:130 +#: airtime_mvc/application/services/CalendarService.php:134 +msgid "Cancel Current Show" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:152 +#: airtime_mvc/application/services/CalendarService.php:167 +#: airtime_mvc/application/services/CalendarService.php:151 +#: airtime_mvc/application/services/CalendarService.php:166 +msgid "Edit This Instance" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:157 +#: airtime_mvc/application/controllers/LibraryController.php:241 +#: airtime_mvc/application/controllers/LibraryController.php:263 +#: airtime_mvc/application/controllers/LibraryController.php:239 +#: airtime_mvc/application/controllers/LibraryController.php:261 +#: airtime_mvc/application/services/CalendarService.php:156 +msgid "Edit" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:162 +#: airtime_mvc/application/services/CalendarService.php:173 +#: airtime_mvc/application/services/CalendarService.php:161 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:186 +#: airtime_mvc/application/services/CalendarService.php:201 +#: airtime_mvc/application/services/CalendarService.php:206 +#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:19 +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:30 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:27 +#: airtime_mvc/application/controllers/LibraryController.php:217 +#: airtime_mvc/application/controllers/LibraryController.php:246 +#: airtime_mvc/application/controllers/LibraryController.php:265 +#: airtime_mvc/application/controllers/ShowbuilderController.php:202 +#: airtime_mvc/application/controllers/LibraryController.php:215 +#: airtime_mvc/application/controllers/LibraryController.php:244 +#: airtime_mvc/application/controllers/LibraryController.php:263 +#: airtime_mvc/application/controllers/ShowbuilderController.php:210 +#: airtime_mvc/application/services/CalendarService.php:185 +#: airtime_mvc/application/services/CalendarService.php:200 +#: airtime_mvc/application/services/CalendarService.php:205 +msgid "Delete" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:191 +#: airtime_mvc/application/services/CalendarService.php:190 +msgid "Delete This Instance" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:196 +#: airtime_mvc/application/services/CalendarService.php:195 +msgid "Delete This Instance and All Following" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:250 +#: airtime_mvc/application/services/CalendarService.php:249 +msgid "Permission denied" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:254 +#: airtime_mvc/application/services/CalendarService.php:253 +msgid "Can't drag and drop repeating shows" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:263 +#: airtime_mvc/application/services/CalendarService.php:262 +msgid "Can't move a past show" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:281 +#: airtime_mvc/application/services/CalendarService.php:297 +msgid "Can't move show into past" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:288 +#: airtime_mvc/application/forms/AddShowWhen.php:280 +#: airtime_mvc/application/forms/AddShowWhen.php:294 +#: airtime_mvc/application/forms/AddShowWhen.php:318 +#: airtime_mvc/application/forms/AddShowWhen.php:324 +#: airtime_mvc/application/forms/AddShowWhen.php:329 +#: airtime_mvc/application/forms/AddShowWhen.php:274 +#: airtime_mvc/application/forms/AddShowWhen.php:288 +#: airtime_mvc/application/services/CalendarService.php:304 +msgid "Cannot schedule overlapping shows" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:301 +#: airtime_mvc/application/services/CalendarService.php:317 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:311 +#: airtime_mvc/application/services/CalendarService.php:327 +msgid "Show was deleted because recorded show does not exist!" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:318 +#: airtime_mvc/application/services/CalendarService.php:334 +msgid "Must wait 1 hour to rebroadcast." +msgstr "" + +#: airtime_mvc/application/views/scripts/preference/index.phtml:2 +#: airtime_mvc/application/configs/navigation.php:45 +msgid "Preferences" +msgstr "" + +#: airtime_mvc/application/views/scripts/preference/index.phtml:6 +#: airtime_mvc/application/views/scripts/preference/index.phtml:14 +#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:6 +#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:115 +#: airtime_mvc/application/views/scripts/form/edit-user.phtml:160 +#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:16 +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:27 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:24 +#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 +#: airtime_mvc/application/controllers/LocaleController.php:285 +#: airtime_mvc/application/forms/AddUser.php:106 +#: airtime_mvc/application/forms/SupportSettings.php:158 +#: airtime_mvc/application/forms/EditHistory.php:131 +#: airtime_mvc/application/forms/EditAudioMD.php:135 +#: airtime_mvc/application/forms/EditAudioMD.php:182 +#: airtime_mvc/application/forms/BillingClient.php:193 +#: airtime_mvc/application/forms/SupportSettings.php:143 +#: airtime_mvc/application/views/scripts/form/edit-user.phtml:161 +msgid "Save" +msgstr "" + +#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2 +#: airtime_mvc/application/controllers/LocaleController.php:156 +msgid "Manage Media Folders" +msgstr "" + +#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2 +msgid "Stream Settings" +msgstr "" + +#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:12 +msgid "Global Settings" +msgstr "" + +#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:87 +msgid "dB" +msgstr "" + +#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106 +msgid "Output Stream Settings" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9 +#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27 +msgid "Choose folder" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10 +msgid "Set" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19 +msgid "Current Import Folder:" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28 +#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 +#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41 +#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 +msgid "Add" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43 +msgid "" +"Rescan watched directory (This is useful if it is network mount and may be " +"out of sync with Airtime)" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44 +msgid "Remove watched directory" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:50 +msgid "You are not watching any media folders." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1 +msgid "Register Airtime" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6 +#, php-format +msgid "" +"Help Airtime improve by letting us know how you are using it. This info will" +" be collected regularly in order to enhance your user experience.%sClick " +"'Yes, help Airtime' and we'll make sure the features you use are constantly " +"improving." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:25 +#, php-format +msgid "" +"Click the box below to advertise your station on %sSourcefabric.org%s. In " +"order to promote your station, 'Send support feedback' must be enabled. This" +" data will be collected in addition to the support feedback." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:47 +#: airtime_mvc/application/views/scripts/form/preferences_email_server.phtml:44 +#: airtime_mvc/application/views/scripts/form/preferences_email_server.phtml:74 +#: airtime_mvc/application/views/scripts/form/preferences_email_server.phtml:90 +#: airtime_mvc/application/views/scripts/form/preferences_general.phtml:97 +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46 +#: airtime_mvc/application/views/scripts/form/preferences_soundcloud.phtml:44 +#: airtime_mvc/application/views/scripts/form/preferences_soundcloud.phtml:59 +#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:34 +#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:48 +#: airtime_mvc/application/views/scripts/form/preferences_soundcloud.phtml:31 +#: airtime_mvc/application/views/scripts/form/preferences_soundcloud.phtml:46 +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5 +#: airtime_mvc/application/views/scripts/form/preferences_general.phtml:115 +msgid "(Required)" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:65 +#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:79 +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:61 +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:76 +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:20 +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:35 +msgid "(for verification purposes only, will not be published)" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:150 +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:151 +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:110 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:164 +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:164 +msgid "Show me what I am sending " +msgstr "" + +#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:178 +msgid "Terms and Conditions" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7 +msgid "Find Shows" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:12 +msgid "Filter By Show:" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/login.phtml:34 +#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3 +msgid "Reset password" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:3 +msgid "Smart Block Options" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:39 +msgid "or" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:40 +msgid "and" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:63 +msgid " to " +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:120 +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:133 +msgid "files meet the criteria" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:127 +msgid "file meet the criteria" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:53 +msgid "Connection URL: " +msgstr "" + +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5 +#, php-format +msgid "" +"Help Airtime improve by letting Sourcefabric know how you are using it. This" +" information will be collected regularly in order to enhance your user " +"experience.%sClick the 'Send support feedback' box and we'll make sure the " +"features you use are constantly improving." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:23 +#, php-format +msgid "Click the box below to promote your station on %sSourcefabric.org%s." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:41 +msgid "" +"(In order to promote your station, 'Send support feedback' must be enabled)." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:186 +msgid "Sourcefabric Privacy Policy" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:2 +msgid "Input Stream Settings" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:109 +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:81 +msgid "Master Source Connection URL:" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:115 +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:159 +msgid "Override" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:120 +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:164 +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:87 +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:98 +msgid "OK" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:120 +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:164 +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:87 +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:98 +msgid "RESET" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:153 +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:92 +msgid "Show Source Connection URL:" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 +msgid "Choose Days:" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 +#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18 +msgid "Remove" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4 +msgid "Repeat Days:" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences.phtml:5 +msgid "Email / Mail Server Settings" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences.phtml:10 +#: airtime_mvc/application/views/scripts/form/preferences.phtml:5 +msgid "SoundCloud Settings" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1 +#, php-format +msgid "%s's Settings" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45 +msgid "Choose Show Instance" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53 +#: airtime_mvc/application/controllers/LocaleController.php:391 +#: airtime_mvc/application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56 +msgid "Find" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4 +msgid "Stream " +msgstr "" + +#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:77 +msgid "Additional Options" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:137 +msgid "" +"The following info will be displayed to listeners in their media player:" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:170 +msgid "(Your radio station website)" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:208 +msgid "Stream URL: " +msgstr "" + +#: airtime_mvc/application/views/scripts/form/daterange.phtml:6 +msgid "Filter History" +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3 +msgid "Welcome to Airtime!" +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/help.phtml:4 +msgid "" +"Here's how you can get started using Airtime to automate your broadcasts: " +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7 +msgid "" +"Begin by adding your files to the library using the 'Add Media' menu button." +" You can drag and drop your files to this window too." +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8 +msgid "" +"Create a show by going to 'Calendar' in the menu bar, and then clicking the " +"'+ Show' icon. This can be either a one-time or repeating show. Only admins " +"and program managers can add shows." +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9 +msgid "" +"Add media to the show by going to your show in the Schedule calendar, left-" +"clicking on it and selecting 'Add / Remove Content'" +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10 +msgid "" +"Select your media from the left pane and drag them to your show in the right" +" pane." +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/help.phtml:12 +msgid "Then you're good to go!" +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/help.phtml:13 +#, php-format +msgid "For more detailed help, read the %suser manual%s." +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2 +#: airtime_mvc/application/configs/navigation.php:130 +msgid "About" +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/about.phtml:5 +#, php-format +msgid "" +"%sAirtime%s %s, the open radio software for scheduling and remote station " +"management. %s" +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/about.phtml:13 +#, php-format +msgid "" +"%sSourcefabric%s o.p.s. Airtime is distributed under the %sGNU GPL v.3%s" +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3 +msgid "Share" +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64 +msgid "Select stream:" +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90 +#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60 +msgid "mute" +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91 +#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63 +msgid "unmute" +msgstr "" + +#: airtime_mvc/application/views/scripts/login/index.phtml:3 +#: airtime_mvc/application/forms/Login.php:65 +msgid "Login" +msgstr "" + +#: airtime_mvc/application/views/scripts/login/index.phtml:7 +msgid "" +"Welcome to the online Airtime demo! You can log in using the username " +"'admin' and the password 'admin'." +msgstr "" + +#: airtime_mvc/application/views/scripts/login/password-restore.phtml:7 +msgid "" +"Please enter your account e-mail address. You will receive a link to create " +"a new password via e-mail." +msgstr "" + +#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3 +msgid "Email sent" +msgstr "" + +#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6 +msgid "An email has been sent" +msgstr "" + +#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:7 +msgid "Back to login screen" +msgstr "" + +#: airtime_mvc/application/views/scripts/login/password-change.phtml:3 +msgid "New password" +msgstr "" + +#: airtime_mvc/application/views/scripts/login/password-change.phtml:6 +msgid "Please enter and confirm your new password in the fields below." +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3 +msgid "Your trial expires in" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9 +msgid "Purchase your copy of Airtime" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9 +msgid "My Account" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/header.phtml:3 +msgid "Previous:" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/header.phtml:10 +msgid "Next:" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/header.phtml:24 +msgid "Source Streams" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/header.phtml:29 +msgid "Master Source" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/header.phtml:38 +msgid "Show Source" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/header.phtml:45 +msgid "Scheduled Play" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/header.phtml:54 +msgid "ON AIR" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/header.phtml:55 +msgid "Listen" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/header.phtml:59 +msgid "Station time" +msgstr "" + +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3 +#: airtime_mvc/application/controllers/LocaleController.php:353 +#: airtime_mvc/application/controllers/LocaleController.php:381 +msgid "Close" +msgstr "" + +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6 +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:40 +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:34 +msgid "Add this show" +msgstr "" + +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6 +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:40 +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:34 +msgid "Update show" +msgstr "" + +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10 +msgid "What" +msgstr "" + +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 +msgid "When" +msgstr "" + +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:19 +msgid "Live Stream Input" +msgstr "" + +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:23 +msgid "Record & Rebroadcast" +msgstr "" + +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:29 +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:23 +msgid "Who" +msgstr "" + +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:33 +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:27 +msgid "Style" +msgstr "" + +#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5 +#: airtime_mvc/application/controllers/LocaleController.php:264 +msgid "Start" +msgstr "" + +#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:4 +msgid "Service" +msgstr "" + +#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:5 +#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:8 +#: airtime_mvc/application/controllers/LocaleController.php:363 +#: airtime_mvc/application/controllers/LocaleController.php:364 +#: airtime_mvc/application/configs/navigation.php:76 +msgid "Status" +msgstr "" + +#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:6 +msgid "Uptime" +msgstr "" + +#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:7 +msgid "CPU" +msgstr "" + +#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:8 +msgid "Memory" +msgstr "" + +#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:14 +msgid "Airtime Version" +msgstr "" + +#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 +msgid "Disk Space" +msgstr "" + +#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:3 +#: airtime_mvc/application/views/scripts/library/library.phtml:3 +msgid "File import in progress..." +msgstr "" + +#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:5 +#: airtime_mvc/application/views/scripts/library/library.phtml:10 +msgid "Advanced Search Options" +msgstr "" + +#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2 +msgid "Listener Count Over Time" +msgstr "" + +#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:5 +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:11 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:11 +msgid "New" +msgstr "" + +#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8 +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:14 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:14 +msgid "New Playlist" +msgstr "" + +#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:9 +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:15 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:15 +msgid "New Smart Block" +msgstr "" + +#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:10 +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:16 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:16 +msgid "New Webstream" +msgstr "" + +#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:39 +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:53 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:55 +msgid "View / edit description" +msgstr "" + +#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:41 +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:55 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:57 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:162 +msgid "Description" +msgstr "" + +#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:52 +msgid "Stream URL:" +msgstr "" + +#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:57 +msgid "Default Length:" +msgstr "" + +#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:64 +msgid "No webstream" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:21 +msgid "Empty playlist content" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:21 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:21 +msgid "Clear" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:24 +msgid "Shuffle playlist" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:24 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:334 +msgid "Shuffle" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:27 +msgid "Save playlist" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:34 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:31 +msgid "Playlist crossfade" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:67 +#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:72 +msgid "Fade in: " +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:70 +#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:75 +msgid "Fade out: " +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:85 +msgid "No open playlist" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3 +#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3 +msgid "Show Waveform" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6 +#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:72 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:75 +msgid "(ss.t)" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:21 +msgid "Empty smart block content" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:90 +msgid "No open smart block" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5 +msgid "Cue In: " +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5 +#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12 +msgid "(hh:mm:ss.t)" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12 +msgid "Cue Out: " +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19 +msgid "Original Length:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:54 +msgid "Expand Static Block" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:59 +msgid "Expand Dynamic Block" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:135 +msgid "Empty smart block" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:137 +msgid "Empty playlist" +msgstr "" + +#: airtime_mvc/application/views/scripts/error/error.phtml:6 +msgid "Zend Framework Default Application" +msgstr "" + +#: airtime_mvc/application/views/scripts/error/error.phtml:10 +msgid "Page not found!" +msgstr "" + +#: airtime_mvc/application/views/scripts/error/error.phtml:11 +msgid "Looks like the page you were looking for doesn't exist!" +msgstr "" + +#: airtime_mvc/application/views/scripts/error/error.phtml:13 +#: airtime_mvc/application/configs/navigation.php:113 +msgid "Help" +msgstr "" + +#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23 +msgid "previous" +msgstr "" + +#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28 +msgid "play" +msgstr "" + +#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32 +msgid "pause" +msgstr "" + +#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37 +msgid "next" +msgstr "" + +#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42 +msgid "stop" +msgstr "" + +#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69 +msgid "max volume" +msgstr "" + +#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79 +msgid "Update Required" +msgstr "" + +#: airtime_mvc/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 "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 +msgid "Creating File Summary Template" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 +msgid "Creating Log Sheet Template" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:153 +msgid "Name" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 +msgid "Add more elements" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 +msgid "Add New Field" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 +msgid "Set Default Template" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:4 +msgid "Log Sheet Templates" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:7 +msgid "No Log Sheet Templates" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:25 +#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:56 +#: airtime_mvc/application/controllers/LocaleController.php:388 +msgid "Set Default" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:31 +msgid "New Log Sheet Template" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:35 +msgid "File Summary Templates" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:38 +msgid "No File Summary Templates" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:62 +msgid "New File Summary Template" +msgstr "" + +#: airtime_mvc/application/views/scripts/user/add-user.phtml:3 +msgid "Manage Users" +msgstr "" + +#: airtime_mvc/application/views/scripts/user/add-user.phtml:10 +msgid "New User" +msgstr "" + +#: airtime_mvc/application/views/scripts/user/add-user.phtml:17 +msgid "id" +msgstr "" + +#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +#: airtime_mvc/application/forms/PasswordRestore.php:25 +msgid "Username" +msgstr "" + +#: airtime_mvc/application/views/scripts/user/add-user.phtml:19 +msgid "First Name" +msgstr "" + +#: airtime_mvc/application/views/scripts/user/add-user.phtml:20 +msgid "Last Name" +msgstr "" + +#: airtime_mvc/application/views/scripts/user/add-user.phtml:21 +msgid "User Type" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 +#: airtime_mvc/application/forms/EditAudioMD.php:19 +#: airtime_mvc/application/forms/EditAudioMD.php:25 +msgid "Title:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148 +#: airtime_mvc/application/forms/EditAudioMD.php:26 +#: airtime_mvc/application/forms/EditAudioMD.php:40 +msgid "Creator:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 +#: airtime_mvc/application/forms/EditAudioMD.php:33 +#: airtime_mvc/application/forms/EditAudioMD.php:50 +msgid "Album:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12 +#: airtime_mvc/application/forms/EditAudioMD.php:40 +msgid "Track:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147 +msgid "Length:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14 +msgid "Sample Rate:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:67 +msgid "Bit Rate:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 +#: airtime_mvc/application/forms/EditAudioMD.php:88 +#: airtime_mvc/application/forms/EditAudioMD.php:121 +msgid "Mood:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 +#: airtime_mvc/application/forms/AddShowWhat.php:45 +#: airtime_mvc/application/forms/EditAudioMD.php:47 +#: airtime_mvc/application/forms/EditAudioMD.php:68 +msgid "Genre:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 +#: airtime_mvc/application/forms/EditAudioMD.php:55 +#: airtime_mvc/application/forms/EditAudioMD.php:78 +msgid "Year:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 +#: airtime_mvc/application/forms/EditAudioMD.php:67 +#: airtime_mvc/application/forms/EditAudioMD.php:91 +msgid "Label:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 +#: airtime_mvc/application/forms/EditAudioMD.php:96 +#: airtime_mvc/application/forms/EditAudioMD.php:131 +msgid "BPM:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 +#: airtime_mvc/application/forms/EditAudioMD.php:74 +#: airtime_mvc/application/forms/EditAudioMD.php:101 +msgid "Composer:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 +#: airtime_mvc/application/forms/EditAudioMD.php:81 +#: airtime_mvc/application/forms/EditAudioMD.php:111 +msgid "Conductor:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 +#: airtime_mvc/application/forms/EditAudioMD.php:105 +#: airtime_mvc/application/forms/EditAudioMD.php:141 +msgid "Copyright:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24 +msgid "Isrc Number:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 +#: airtime_mvc/application/forms/EditAudioMD.php:119 +#: airtime_mvc/application/forms/EditAudioMD.php:161 +msgid "Website:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 +#: airtime_mvc/application/forms/Login.php:48 +#: airtime_mvc/application/forms/EditUser.php:114 +#: airtime_mvc/application/forms/EditAudioMD.php:126 +#: airtime_mvc/application/forms/EditAudioMD.php:171 +msgid "Language:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27 +msgid "File Path:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146 +#: airtime_mvc/application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149 +#: airtime_mvc/application/forms/AddShowWhat.php:54 +msgid "Description:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45 +msgid "Web Stream" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46 +msgid "Dynamic Smart Block" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47 +msgid "Static Smart Block" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48 +msgid "Audio Track" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63 +msgid "Playlist Contents: " +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65 +msgid "Static Smart Block Contents: " +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104 +msgid "Dynamic Smart Block Criteria: " +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137 +msgid "Limit to " +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150 +#: airtime_mvc/application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:7 +msgid "Log Sheet" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8 +msgid "File Summary" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:10 +msgid "Show Summary" +msgstr "" + +#: airtime_mvc/application/models/Show.php:180 +msgid "Shows can have a max length of 24 hours." +msgstr "" + +#: airtime_mvc/application/models/Show.php:278 +#: airtime_mvc/application/forms/AddShowWhen.php:141 +msgid "End date/time cannot be in the past" +msgstr "" + +#: airtime_mvc/application/models/Show.php:289 +msgid "" +"Cannot schedule overlapping shows.\n" +"Note: Resizing a repeating show affects all of its repeats." +msgstr "" + +#: airtime_mvc/application/models/ShowInstance.php:257 +msgid "can't resize a past show" +msgstr "" + +#: airtime_mvc/application/models/ShowInstance.php:279 +msgid "Should not overlap shows" +msgstr "" + +#: airtime_mvc/application/models/Preference.php:655 +#: airtime_mvc/application/models/Preference.php:666 +msgid "Select Country" +msgstr "" + +#: airtime_mvc/application/models/MusicDir.php:160 +#, php-format +msgid "%s is already watched." +msgstr "" + +#: airtime_mvc/application/models/MusicDir.php:164 +#, php-format +msgid "%s contains nested watched directory: %s" +msgstr "" + +#: airtime_mvc/application/models/MusicDir.php:168 +#, php-format +msgid "%s is nested within existing watched directory: %s" +msgstr "" + +#: airtime_mvc/application/models/MusicDir.php:189 +#: airtime_mvc/application/models/MusicDir.php:368 +#: airtime_mvc/application/models/MusicDir.php:370 +#, php-format +msgid "%s is not a valid directory." +msgstr "" + +#: airtime_mvc/application/models/MusicDir.php:232 +#, php-format +msgid "" +"%s is already set as the current storage dir or in the watched folders list" +msgstr "" + +#: airtime_mvc/application/models/MusicDir.php:386 +#: airtime_mvc/application/models/MusicDir.php:388 +#, php-format +msgid "" +"%s is already set as the current storage dir or in the watched folders list." +msgstr "" + +#: airtime_mvc/application/models/MusicDir.php:429 +#: airtime_mvc/application/models/MusicDir.php:431 +#, php-format +msgid "%s doesn't exist in the watched list." +msgstr "" + +#: airtime_mvc/application/models/Block.php:333 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:120 +msgid "items" +msgstr "" + +#: airtime_mvc/application/models/Block.php:833 +#: airtime_mvc/application/models/Playlist.php:812 +msgid "Cue in and cue out are null." +msgstr "" + +#: airtime_mvc/application/models/Block.php:868 +#: airtime_mvc/application/models/Block.php:924 +#: airtime_mvc/application/models/Playlist.php:851 +#: airtime_mvc/application/models/Playlist.php:895 +msgid "Can't set cue out to be greater than file length." +msgstr "" + +#: airtime_mvc/application/models/Block.php:879 +#: airtime_mvc/application/models/Block.php:900 +#: airtime_mvc/application/models/Playlist.php:843 +#: airtime_mvc/application/models/Playlist.php:868 +msgid "Can't set cue in to be larger than cue out." +msgstr "" + +#: airtime_mvc/application/models/Block.php:935 +#: airtime_mvc/application/models/Playlist.php:887 +msgid "Can't set cue out to be smaller than cue in." +msgstr "" + +#: airtime_mvc/application/models/Block.php:1340 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:48 +msgid "Select criteria" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1342 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 +msgid "Bit Rate (Kbps)" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1343 +#: airtime_mvc/application/controllers/LocaleController.php:70 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:51 +msgid "BPM" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1350 +#: airtime_mvc/application/controllers/LocaleController.php:74 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:58 +msgid "Encoded By" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1355 +#: airtime_mvc/application/controllers/LocaleController.php:79 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:63 +msgid "Last Modified" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1356 +#: airtime_mvc/application/controllers/LocaleController.php:80 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:64 +msgid "Last Played" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1358 +#: airtime_mvc/application/controllers/LocaleController.php:82 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:66 +msgid "Mime" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1360 +#: airtime_mvc/application/controllers/LocaleController.php:84 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:68 +msgid "Owner" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1361 +#: airtime_mvc/application/controllers/LocaleController.php:85 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:69 +msgid "Replay Gain" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1362 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:70 +msgid "Sample Rate (kHz)" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1364 +#: airtime_mvc/application/controllers/LocaleController.php:87 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:72 +msgid "Track Number" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1365 +#: airtime_mvc/application/controllers/LocaleController.php:88 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 +msgid "Uploaded" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1366 +#: airtime_mvc/application/controllers/LocaleController.php:89 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +msgid "Website" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1371 +#: airtime_mvc/application/controllers/LocaleController.php:141 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:87 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:103 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:251 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:366 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:404 +msgid "Select modifier" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1372 +#: airtime_mvc/application/controllers/LocaleController.php:142 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:88 +msgid "contains" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1373 +#: airtime_mvc/application/controllers/LocaleController.php:143 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:89 +msgid "does not contain" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1374 +#: airtime_mvc/application/models/Block.php:1378 +#: airtime_mvc/application/controllers/LocaleController.php:144 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:90 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:104 +msgid "is" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1375 +#: airtime_mvc/application/models/Block.php:1379 +#: airtime_mvc/application/controllers/LocaleController.php:145 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:91 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:105 +msgid "is not" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1376 +#: airtime_mvc/application/controllers/LocaleController.php:146 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:92 +msgid "starts with" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1377 +#: airtime_mvc/application/controllers/LocaleController.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:93 +msgid "ends with" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1380 +#: airtime_mvc/application/controllers/LocaleController.php:148 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:106 +msgid "is greater than" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1381 +#: airtime_mvc/application/controllers/LocaleController.php:149 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:107 +msgid "is less than" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1382 +#: airtime_mvc/application/controllers/LocaleController.php:150 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:108 +msgid "is in the range" +msgstr "" + +#: airtime_mvc/application/models/Webstream.php:157 +msgid "Length needs to be greater than 0 minutes" +msgstr "" + +#: airtime_mvc/application/models/Webstream.php:162 +msgid "Length should be of form \"00h 00m\"" +msgstr "" + +#: airtime_mvc/application/models/Webstream.php:175 +msgid "URL should be of form \"http://domain\"" +msgstr "" + +#: airtime_mvc/application/models/Webstream.php:178 +msgid "URL should be 512 characters or less" +msgstr "" + +#: airtime_mvc/application/models/Webstream.php:184 +msgid "No MIME type found for webstream." +msgstr "" + +#: airtime_mvc/application/models/Webstream.php:200 +msgid "Webstream name cannot be empty" +msgstr "" + +#: airtime_mvc/application/models/Webstream.php:269 +msgid "Could not parse XSPF playlist" +msgstr "" + +#: airtime_mvc/application/models/Webstream.php:281 +msgid "Could not parse PLS playlist" +msgstr "" + +#: airtime_mvc/application/models/Webstream.php:300 +msgid "Could not parse M3U playlist" +msgstr "" + +#: airtime_mvc/application/models/Webstream.php:314 +msgid "Invalid webstream - This appears to be a file download." +msgstr "" + +#: airtime_mvc/application/models/Webstream.php:318 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "" + +#: airtime_mvc/application/models/Auth.php:33 +#, php-format +msgid "" +"Hi %s, \n" +"\n" +"Click this link to reset your password: " +msgstr "" + +#: airtime_mvc/application/models/Auth.php:36 +msgid "Airtime Password Reset" +msgstr "" + +#: airtime_mvc/application/models/ShowBuilder.php:212 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "" + +#: airtime_mvc/application/models/Scheduler.php:73 +msgid "Cannot move items out of linked shows" +msgstr "" + +#: airtime_mvc/application/models/Scheduler.php:119 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "" + +#: airtime_mvc/application/models/Scheduler.php:124 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "" + +#: airtime_mvc/application/models/Scheduler.php:132 +#: airtime_mvc/application/models/Scheduler.php:444 +#: airtime_mvc/application/models/Scheduler.php:482 +#: airtime_mvc/application/models/Scheduler.php:460 +#: airtime_mvc/application/models/Scheduler.php:498 +msgid "The schedule you're viewing is out of date!" +msgstr "" + +#: airtime_mvc/application/models/Scheduler.php:142 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "" + +#: airtime_mvc/application/models/Scheduler.php:146 +msgid "You cannot add files to recording shows." +msgstr "" + +#: airtime_mvc/application/models/Scheduler.php:152 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "" + +#: airtime_mvc/application/models/Scheduler.php:159 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "" + +#: airtime_mvc/application/models/Scheduler.php:178 +msgid "" +"Content in linked shows must be scheduled before or after any one is " +"broadcasted" +msgstr "" + +#: airtime_mvc/application/models/Scheduler.php:200 +#: airtime_mvc/application/models/Scheduler.php:289 +#: airtime_mvc/application/models/Scheduler.php:216 +#: airtime_mvc/application/models/Scheduler.php:305 +msgid "A selected File does not exist!" +msgstr "" + +#: airtime_mvc/application/models/StoredFile.php:1003 +msgid "Failed to create 'organize' directory." +msgstr "" + +#: airtime_mvc/application/models/StoredFile.php:1017 +#, php-format +msgid "" +"The file was not uploaded, there is %s MB of disk space left and the file " +"you are uploading has a size of %s MB." +msgstr "" + +#: airtime_mvc/application/models/StoredFile.php:1026 +msgid "" +"This file appears to be corrupted and will not be added to media library." +msgstr "" + +#: airtime_mvc/application/models/StoredFile.php:1065 +msgid "" +"The file was not uploaded, this error can occur if the computer hard drive " +"does not have enough disk space or the stor directory does not have correct " +"write permissions." +msgstr "" + +#: airtime_mvc/application/controllers/DashboardController.php:36 +#: airtime_mvc/application/controllers/DashboardController.php:85 +msgid "You don't have permission to disconnect source." +msgstr "" + +#: airtime_mvc/application/controllers/DashboardController.php:38 +#: airtime_mvc/application/controllers/DashboardController.php:87 +msgid "There is no source connected to this input." +msgstr "" + +#: airtime_mvc/application/controllers/DashboardController.php:82 +msgid "You don't have permission to switch source." +msgstr "" + +#: airtime_mvc/application/controllers/ScheduleController.php:350 +#: airtime_mvc/application/controllers/ScheduleController.php:383 +#, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "" + +#: airtime_mvc/application/controllers/ScheduleController.php:624 +#: airtime_mvc/application/controllers/LibraryController.php:222 +#: airtime_mvc/application/controllers/ScheduleController.php:692 +#: airtime_mvc/application/controllers/LibraryController.php:220 +msgid "Download" +msgstr "" + +#: airtime_mvc/application/controllers/ListenerstatController.php:56 +#: airtime_mvc/application/controllers/ListenerstatController.php:91 +msgid "" +"Please make sure admin user/password is correct on System->Streams page." +msgstr "" + +#: airtime_mvc/application/controllers/ApiController.php:60 +#: airtime_mvc/application/controllers/Apiv2Controller.php:77 +msgid "You are not allowed to access this resource." +msgstr "" + +#: airtime_mvc/application/controllers/ApiController.php:314 +#: airtime_mvc/application/controllers/ApiController.php:376 +#: airtime_mvc/application/controllers/ApiController.php:315 +#: airtime_mvc/application/controllers/ApiController.php:377 +msgid "You are not allowed to access this resource. " +msgstr "" + +#: airtime_mvc/application/controllers/ApiController.php:555 +#: airtime_mvc/application/controllers/ApiController.php:558 +msgid "File does not exist in Airtime." +msgstr "" + +#: airtime_mvc/application/controllers/ApiController.php:575 +#: airtime_mvc/application/controllers/ApiController.php:578 +msgid "File does not exist in Airtime" +msgstr "" + +#: airtime_mvc/application/controllers/ApiController.php:587 +#: airtime_mvc/application/controllers/ApiController.php:590 +msgid "File doesn't exist in Airtime." +msgstr "" + +#: airtime_mvc/application/controllers/ApiController.php:638 +#: airtime_mvc/application/controllers/ApiController.php:641 +msgid "Bad request. no 'mode' parameter passed." +msgstr "" + +#: airtime_mvc/application/controllers/ApiController.php:648 +#: airtime_mvc/application/controllers/ApiController.php:651 +msgid "Bad request. 'mode' parameter is invalid" +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:125 +#: airtime_mvc/application/controllers/PlaylistController.php:130 +#: airtime_mvc/application/controllers/LibraryController.php:123 +#, php-format +msgid "%s not found" +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:134 +#: airtime_mvc/application/controllers/PlaylistController.php:151 +#: airtime_mvc/application/controllers/LibraryController.php:132 +msgid "Something went wrong." +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:189 +#: airtime_mvc/application/controllers/ShowbuilderController.php:194 +#: airtime_mvc/application/controllers/LibraryController.php:187 +#: airtime_mvc/application/controllers/ShowbuilderController.php:202 +msgid "Preview" +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:210 +#: airtime_mvc/application/controllers/LibraryController.php:234 +#: airtime_mvc/application/controllers/LibraryController.php:257 +#: airtime_mvc/application/controllers/LibraryController.php:208 +#: airtime_mvc/application/controllers/LibraryController.php:232 +#: airtime_mvc/application/controllers/LibraryController.php:255 +msgid "Add to Playlist" +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:212 +#: airtime_mvc/application/controllers/LibraryController.php:210 +msgid "Add to Smart Block" +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:218 +#: airtime_mvc/application/controllers/LocaleController.php:57 +#: airtime_mvc/application/controllers/LibraryController.php:216 +msgid "Edit Metadata" +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:226 +#: airtime_mvc/application/controllers/LibraryController.php:224 +msgid "Duplicate Playlist" +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:276 +#: airtime_mvc/application/controllers/LibraryController.php:274 +msgid "Soundcloud" +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:295 +#: airtime_mvc/application/controllers/LibraryController.php:293 +msgid "No action available" +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:315 +#: airtime_mvc/application/controllers/LibraryController.php:313 +msgid "You don't have permission to delete selected items." +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:364 +#: airtime_mvc/application/controllers/LibraryController.php:362 +msgid "Could not delete some scheduled files." +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:404 +#: airtime_mvc/application/controllers/LibraryController.php:402 +#, php-format +msgid "Copy of %s" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:32 +msgid "Recording:" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:33 +msgid "Master Stream" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:34 +msgid "Live Stream" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:35 +msgid "Nothing Scheduled" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:36 +msgid "Current Show:" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:37 +msgid "Current" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:39 +msgid "You are running the latest version" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:40 +msgid "New version available: " +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:41 +msgid "This version will soon be obsolete." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:42 +msgid "This version is no longer supported." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:43 +msgid "Please upgrade to " +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:45 +msgid "Add to current playlist" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:46 +msgid "Add to current smart block" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:47 +msgid "Adding 1 Item" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:48 +#, php-format +msgid "Adding %s Items" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:49 +msgid "You can only add tracks to smart blocks." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:50 +#: airtime_mvc/application/controllers/PlaylistController.php:163 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:53 +msgid "Please select a cursor position on timeline." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:58 +msgid "Add to selected show" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:59 +msgid "Select" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:60 +msgid "Select this page" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:61 +msgid "Deselect this page" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:62 +msgid "Deselect all" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:63 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:64 +msgid "Scheduled" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:65 +msgid "Playlist / Block" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:69 +msgid "Bit Rate" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:86 +msgid "Sample Rate" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:91 +msgid "Loading..." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:92 +#: airtime_mvc/application/controllers/LocaleController.php:392 +#: airtime_mvc/application/views/scripts/plupload/index.phtml:25 +msgid "All" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:93 +msgid "Files" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:94 +msgid "Playlists" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:95 +msgid "Smart Blocks" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:96 +msgid "Web Streams" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:97 +msgid "Unknown type: " +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:98 +msgid "Are you sure you want to delete the selected item?" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:99 +#: airtime_mvc/application/controllers/LocaleController.php:200 +msgid "Uploading in progress..." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:100 +msgid "Retrieving data from the server..." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:101 +msgid "The soundcloud id for this file is: " +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:102 +msgid "There was an error while uploading to soundcloud." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:103 +msgid "Error code: " +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:104 +msgid "Error msg: " +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:105 +msgid "Input must be a positive number" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:106 +msgid "Input must be a number" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:107 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:108 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:111 +#, 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 "" + +#: airtime_mvc/application/controllers/LocaleController.php:113 +msgid "Open Media Builder" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:114 +msgid "please put in a time '00:00:00 (.0)'" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:115 +msgid "please put in a time in seconds '00 (.0)'" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:116 +msgid "Your browser does not support playing this file type: " +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:117 +msgid "Dynamic block is not previewable" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:118 +msgid "Limit to: " +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:119 +msgid "Playlist saved" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:120 +msgid "Playlist shuffled" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:122 +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_mvc/application/controllers/LocaleController.php:124 +#, php-format +msgid "Listener Count on %s: %s" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:126 +msgid "Remind me in 1 week" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:127 +msgid "Remind me never" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:128 +msgid "Yes, help Airtime" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:129 +#: airtime_mvc/application/controllers/LocaleController.php:178 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:132 +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 "" + +#: airtime_mvc/application/controllers/LocaleController.php:134 +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 "" + +#: airtime_mvc/application/controllers/LocaleController.php:136 +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_mvc/application/controllers/LocaleController.php:137 +msgid "Smart block shuffled" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:138 +msgid "Smart block generated and criteria saved" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:139 +msgid "Smart block saved" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:140 +msgid "Processing..." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:152 +msgid "Choose Storage Folder" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:153 +msgid "Choose Folder to Watch" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:155 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:157 +msgid "Are you sure you want to remove the watched folder?" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:158 +msgid "This path is currently not accessible." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:160 +#, php-format +msgid "" +"Some stream types require extra configuration. Details about enabling %sAAC+" +" Support%s or %sOpus Support%s are provided." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:161 +msgid "Connected to the streaming server" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:162 +msgid "The stream is disabled" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:163 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:218 +msgid "Getting information from the server..." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:164 +msgid "Can not connect to the streaming server" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:166 +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_mvc/application/controllers/LocaleController.php:167 +#, php-format +msgid "For more details, please read the %sAirtime Manual%s" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:169 +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 "" + +#: airtime_mvc/application/controllers/LocaleController.php:170 +msgid "" +"Check this box to automatically switch off Master/Show source upon source " +"disconnection." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:171 +msgid "" +"Check this box to automatically switch on Master/Show source upon source " +"connection." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:172 +msgid "" +"If your Icecast server expects a username of 'source', this field can be " +"left blank." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:173 +#: airtime_mvc/application/controllers/LocaleController.php:184 +msgid "" +"If your live streaming client does not ask for a username, this field should" +" be 'source'." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:175 +msgid "" +"If you change the username or password values for an enabled stream the " +"playout engine will be rebooted and your listeners will hear silence for " +"5-10 seconds. Changing the following fields will NOT cause a reboot: Stream " +"Label (Global Settings), and Switch Transition Fade(s), Master Username, and" +" Master Password (Input Stream Settings). If Airtime is recording, and if " +"the change causes a playout engine restart, the recording will be " +"interrupted." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:176 +msgid "" +"This is the admin username and password for Icecast/SHOUTcast to get " +"listener statistics." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:180 +msgid "" +"Warning: You cannot change this field while the show is currently playing" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:181 +msgid "No result found" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:182 +msgid "" +"This follows the same security pattern for the shows: only users assigned to" +" the show can connect." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:183 +msgid "Specify custom authentication which will work only for this show." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:185 +msgid "The show instance doesn't exist anymore!" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:186 +msgid "Warning: Shows cannot be re-linked" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:187 +msgid "" +"By linking your repeating shows any media items scheduled in any repeat show" +" will also get scheduled in the other repeat shows" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:188 +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 "" + +#: airtime_mvc/application/controllers/LocaleController.php:192 +msgid "Show" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:193 +msgid "Show is empty" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:194 +msgid "1m" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:195 +msgid "5m" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:196 +msgid "10m" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:197 +msgid "15m" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:198 +msgid "30m" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:199 +msgid "60m" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:201 +msgid "Retreiving data from the server..." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:207 +msgid "This show has no scheduled content." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:208 +msgid "This show is not completely filled with content." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:212 +msgid "January" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:213 +msgid "February" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:214 +msgid "March" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:215 +msgid "April" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:216 +#: airtime_mvc/application/controllers/LocaleController.php:228 +msgid "May" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:217 +msgid "June" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:218 +msgid "July" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:219 +msgid "August" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:220 +msgid "September" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:221 +msgid "October" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:222 +msgid "November" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:223 +msgid "December" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:224 +msgid "Jan" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:225 +msgid "Feb" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:226 +msgid "Mar" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:227 +msgid "Apr" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:229 +msgid "Jun" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:230 +msgid "Jul" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:231 +msgid "Aug" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:232 +msgid "Sep" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:233 +msgid "Oct" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:234 +msgid "Nov" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:235 +msgid "Dec" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:236 +msgid "today" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:237 +msgid "day" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:238 +msgid "week" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:239 +msgid "month" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:240 +#: airtime_mvc/application/forms/GeneralPreferences.php:123 +#: airtime_mvc/application/forms/GeneralPreferences.php:172 +msgid "Sunday" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:241 +#: airtime_mvc/application/forms/GeneralPreferences.php:124 +#: airtime_mvc/application/forms/GeneralPreferences.php:173 +msgid "Monday" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:242 +#: airtime_mvc/application/forms/GeneralPreferences.php:125 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 +msgid "Tuesday" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:243 +#: airtime_mvc/application/forms/GeneralPreferences.php:126 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 +msgid "Wednesday" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:244 +#: airtime_mvc/application/forms/GeneralPreferences.php:127 +#: airtime_mvc/application/forms/GeneralPreferences.php:176 +msgid "Thursday" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:245 +#: airtime_mvc/application/forms/GeneralPreferences.php:128 +#: airtime_mvc/application/forms/GeneralPreferences.php:177 +msgid "Friday" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:246 +#: airtime_mvc/application/forms/GeneralPreferences.php:129 +#: airtime_mvc/application/forms/GeneralPreferences.php:178 +msgid "Saturday" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:247 +#: airtime_mvc/application/forms/AddShowRepeats.php:35 +msgid "Sun" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:248 +#: airtime_mvc/application/forms/AddShowRepeats.php:36 +msgid "Mon" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:249 +#: airtime_mvc/application/forms/AddShowRepeats.php:37 +msgid "Tue" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:250 +#: airtime_mvc/application/forms/AddShowRepeats.php:38 +msgid "Wed" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:251 +#: airtime_mvc/application/forms/AddShowRepeats.php:39 +msgid "Thu" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:252 +#: airtime_mvc/application/forms/AddShowRepeats.php:40 +msgid "Fri" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:253 +#: airtime_mvc/application/forms/AddShowRepeats.php:41 +msgid "Sat" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:254 +msgid "" +"Shows longer than their scheduled time will be cut off by a following show." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:255 +msgid "Cancel Current Show?" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:256 +#: airtime_mvc/application/controllers/LocaleController.php:300 +msgid "Stop recording current show?" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:257 +msgid "Ok" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:258 +msgid "Contents of Show" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:261 +msgid "Remove all content?" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:263 +msgid "Delete selected item(s)?" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:265 +msgid "End" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:266 +msgid "Duration" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:276 +msgid "Show Empty" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:277 +msgid "Recording From Line In" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:278 +msgid "Track preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:282 +msgid "Cannot schedule outside a show." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:283 +msgid "Moving 1 Item" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:284 +#, php-format +msgid "Moving %s Items" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:286 +#: airtime_mvc/application/controllers/LocaleController.php:309 +#: airtime_mvc/application/forms/EditHistory.php:141 +#: airtime_mvc/application/forms/PasswordRestore.php:46 +#: airtime_mvc/application/forms/EditAudioMD.php:145 +#: airtime_mvc/application/forms/EditAudioMD.php:192 +msgid "Cancel" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:287 +msgid "Fade Editor" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:288 +msgid "Cue Editor" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:289 +msgid "" +"Waveform features are available in a browser supporting the Web Audio API" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:292 +msgid "Select all" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:293 +msgid "Select none" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:294 +msgid "Remove overbooked tracks" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:295 +msgid "Remove selected scheduled items" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:296 +msgid "Jump to the current playing track" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:297 +msgid "Cancel current show" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:302 +msgid "Open library to add or remove content" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:305 +msgid "in use" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:306 +msgid "Disk" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:308 +msgid "Look in" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:310 +msgid "Open" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:312 +#: airtime_mvc/application/forms/AddUser.php:98 +msgid "Admin" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:313 +#: airtime_mvc/application/forms/AddUser.php:96 +msgid "DJ" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:314 +#: airtime_mvc/application/forms/AddUser.php:97 +msgid "Program Manager" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:315 +#: airtime_mvc/application/forms/AddUser.php:95 +msgid "Guest" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:316 +msgid "Guests can do the following:" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:317 +msgid "View schedule" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:318 +msgid "View show content" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:319 +msgid "DJs can do the following:" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:320 +msgid "Manage assigned show content" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:321 +msgid "Import media files" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:322 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:323 +msgid "Manage their own library content" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:324 +msgid "Progam Managers can do the following:" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:325 +msgid "View and manage show content" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:326 +msgid "Schedule shows" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:327 +msgid "Manage all library content" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:328 +msgid "Admins can do the following:" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:329 +msgid "Manage preferences" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:330 +msgid "Manage users" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:331 +msgid "Manage watched folders" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:332 +#: airtime_mvc/application/forms/SupportSettings.php:112 +#: airtime_mvc/application/forms/RegisterAirtime.php:116 +#: airtime_mvc/application/forms/SupportSettings.php:111 +msgid "Send support feedback" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:333 +msgid "View system status" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:334 +msgid "Access playout history" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:335 +msgid "View listener stats" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:337 +msgid "Show / hide columns" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:339 +msgid "From {from} to {to}" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:340 +msgid "kbps" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:341 +msgid "yyyy-mm-dd" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:342 +msgid "hh:mm:ss.t" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:343 +msgid "kHz" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:346 +msgid "Su" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:347 +msgid "Mo" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:348 +msgid "Tu" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:349 +msgid "We" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:350 +msgid "Th" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:351 +msgid "Fr" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:352 +msgid "Sa" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:355 +msgid "Hour" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:356 +msgid "Minute" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:357 +msgid "Done" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:360 +msgid "Select files" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:361 +#: airtime_mvc/application/controllers/LocaleController.php:362 +msgid "Add files to the upload queue and click the start button." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:365 +msgid "Add Files" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:366 +msgid "Stop Upload" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:367 +msgid "Start upload" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:368 +msgid "Add files" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:369 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:370 +msgid "N/A" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:371 +msgid "Drag files here." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:372 +msgid "File extension error." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:373 +msgid "File size error." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:374 +msgid "File count error." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:375 +msgid "Init error." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:376 +msgid "HTTP Error." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:377 +msgid "Security error." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:378 +msgid "Generic error." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:379 +msgid "IO error." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:380 +#, php-format +msgid "File: %s" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:382 +#, php-format +msgid "%d files queued" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:383 +msgid "File: %f, size: %s, max file size: %m" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:384 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:385 +msgid "Error: File too large: " +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:386 +msgid "Error: Invalid file extension: " +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:389 +msgid "Create Entry" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:390 +msgid "Edit History Record" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:393 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:394 +#, php-format +msgid "" +"%sPrint view%sPlease use your browser's print function to print this table. " +"Press escape when finished." +msgstr "" + +#: airtime_mvc/application/controllers/LoginController.php:34 +#: airtime_mvc/application/controllers/LoginController.php:42 +msgid "Please enter your user name and password" +msgstr "" + +#: airtime_mvc/application/controllers/LoginController.php:77 +#: airtime_mvc/application/controllers/LoginController.php:92 +msgid "Wrong username or password provided. Please try again." +msgstr "" + +#: airtime_mvc/application/controllers/LoginController.php:142 +#: airtime_mvc/application/controllers/LoginController.php:159 +msgid "" +"Email could not be sent. Check your mail server settings and ensure it has " +"been configured properly." +msgstr "" + +#: airtime_mvc/application/controllers/LoginController.php:145 +#: airtime_mvc/application/controllers/LoginController.php:162 +msgid "Given email not found." +msgstr "" + +#: airtime_mvc/application/controllers/PreferenceController.php:74 +#: airtime_mvc/application/controllers/PreferenceController.php:62 +msgid "Preferences updated." +msgstr "" + +#: airtime_mvc/application/controllers/PreferenceController.php:125 +#: airtime_mvc/application/controllers/PreferenceController.php:104 +msgid "Support setting updated." +msgstr "" + +#: airtime_mvc/application/controllers/PreferenceController.php:137 +#: airtime_mvc/application/configs/navigation.php:70 +#: airtime_mvc/application/controllers/PreferenceController.php:116 +msgid "Support Feedback" +msgstr "" + +#: airtime_mvc/application/controllers/PreferenceController.php:332 +#: airtime_mvc/application/controllers/PreferenceController.php:273 +msgid "Stream Setting Updated." +msgstr "" + +#: airtime_mvc/application/controllers/PreferenceController.php:365 +#: airtime_mvc/application/controllers/PreferenceController.php:306 +msgid "path should be specified" +msgstr "" + +#: airtime_mvc/application/controllers/PreferenceController.php:460 +#: airtime_mvc/application/controllers/PreferenceController.php:401 +msgid "Problem with Liquidsoap..." +msgstr "" + +#: airtime_mvc/application/controllers/ShowbuilderController.php:196 +#: airtime_mvc/application/controllers/ShowbuilderController.php:204 +msgid "Select cursor" +msgstr "" + +#: airtime_mvc/application/controllers/ShowbuilderController.php:197 +#: airtime_mvc/application/controllers/ShowbuilderController.php:205 +msgid "Remove cursor" +msgstr "" + +#: airtime_mvc/application/controllers/ShowbuilderController.php:216 +#: airtime_mvc/application/controllers/ShowbuilderController.php:224 +msgid "show does not exist" +msgstr "" + +#: airtime_mvc/application/controllers/WebstreamController.php:29 +#: airtime_mvc/application/controllers/WebstreamController.php:33 +msgid "Untitled Webstream" +msgstr "" + +#: airtime_mvc/application/controllers/WebstreamController.php:138 +msgid "Webstream saved." +msgstr "" + +#: airtime_mvc/application/controllers/WebstreamController.php:146 +msgid "Invalid form values." +msgstr "" + +#: airtime_mvc/application/controllers/PlaylistController.php:48 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "" + +#: airtime_mvc/application/controllers/PlaylistController.php:123 +msgid "You cannot add tracks to dynamic blocks." +msgstr "" + +#: airtime_mvc/application/controllers/PlaylistController.php:144 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "" + +#: airtime_mvc/application/controllers/PlaylistController.php:157 +msgid "You can only add tracks to smart block." +msgstr "" + +#: airtime_mvc/application/controllers/PlaylistController.php:175 +msgid "Untitled Playlist" +msgstr "" + +#: airtime_mvc/application/controllers/PlaylistController.php:177 +msgid "Untitled Smart Block" +msgstr "" + +#: airtime_mvc/application/controllers/PlaylistController.php:495 +msgid "Unknown Playlist" +msgstr "" + +#: airtime_mvc/application/controllers/ErrorController.php:17 +msgid "Page not found" +msgstr "" + +#: airtime_mvc/application/controllers/ErrorController.php:22 +msgid "Application error" +msgstr "" + +#: airtime_mvc/application/controllers/UserController.php:82 +#: airtime_mvc/application/controllers/UserController.php:86 +msgid "User added successfully!" +msgstr "" + +#: airtime_mvc/application/controllers/UserController.php:84 +#: airtime_mvc/application/controllers/UserController.php:88 +msgid "User updated successfully!" +msgstr "" + +#: airtime_mvc/application/controllers/UserController.php:154 +#: airtime_mvc/application/controllers/UserController.php:162 +msgid "Settings updated successfully!" +msgstr "" + +#: airtime_mvc/application/common/DateHelper.php:213 +#, php-format +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "" + +#: airtime_mvc/application/common/DateHelper.php:216 +#, php-format +msgid "%s-%s-%s is not a valid date" +msgstr "" + +#: airtime_mvc/application/common/DateHelper.php:240 +#, php-format +msgid "%s:%s:%s is not a valid time" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "" + +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" +msgstr "" + +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" +msgstr "" + +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:25 +#: airtime_mvc/application/forms/Login.php:19 +#: airtime_mvc/application/forms/EditUser.php:32 +msgid "Username:" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:34 +#: airtime_mvc/application/forms/Login.php:34 +#: airtime_mvc/application/forms/EditUser.php:43 +#: airtime_mvc/application/forms/BillingClient.php:172 +msgid "Password:" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:42 +#: airtime_mvc/application/forms/EditUser.php:52 +#: airtime_mvc/application/forms/BillingClient.php:181 +msgid "Verify Password:" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:51 +#: airtime_mvc/application/forms/EditUser.php:62 +msgid "Firstname:" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:57 +#: airtime_mvc/application/forms/EditUser.php:70 +msgid "Lastname:" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:63 +#: airtime_mvc/application/forms/SupportSettings.php:46 +#: airtime_mvc/application/forms/EditUser.php:78 +#: airtime_mvc/application/forms/RegisterAirtime.php:51 +#: airtime_mvc/application/forms/SupportSettings.php:45 +msgid "Email:" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:72 +#: airtime_mvc/application/forms/EditUser.php:89 +msgid "Mobile Phone:" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:78 +#: airtime_mvc/application/forms/EditUser.php:97 +msgid "Skype:" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:84 +#: airtime_mvc/application/forms/EditUser.php:105 +msgid "Jabber:" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:91 +msgid "User Type:" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:116 +#: airtime_mvc/application/forms/EditUser.php:135 +msgid "Login name is not unique." +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 +msgid "Auto Switch Off" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:26 +msgid "Auto Switch On" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:33 +msgid "Switch Transition Fade (s)" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:36 +msgid "enter a time in seconds 00{.000000}" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:45 +msgid "Master Username" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:62 +msgid "Master Password" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:70 +msgid "Master Source Connection URL" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:78 +msgid "Show Source Connection URL" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:87 +msgid "Master Source Port" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:90 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:109 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:112 +msgid "Only numbers are allowed." +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:96 +msgid "Master Source Mount Point" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:99 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:118 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:100 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:123 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:144 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:198 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:210 +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 +#: airtime_mvc/application/forms/DateRange.php:35 +#: airtime_mvc/application/forms/DateRange.php:63 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +msgid "Invalid character entered" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:106 +msgid "Show Source Port" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:115 +msgid "Show Source Mount Point" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:153 +msgid "You cannot use same port as Master DJ port." +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:164 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:182 +#, php-format +msgid "Port %s is not available" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:16 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:22 +msgid "Date/Time Start:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:49 +msgid "Date/Time End:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:74 +msgid "Duration:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:83 +msgid "Timezone:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:92 +msgid "Repeats?" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:124 +msgid "Cannot create show in the past" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:132 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:149 +msgid "Cannot have duration < 0m" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:153 +msgid "Cannot have duration 00h 00m" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:160 +msgid "Cannot have duration greater than 24h" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:10 +msgid "Link:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:16 +msgid "Repeat Type:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:19 +msgid "weekly" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:20 +msgid "every 2 weeks" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:21 +msgid "every 3 weeks" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:22 +msgid "every 4 weeks" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:23 +msgid "monthly" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:32 +msgid "Select Days:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:47 +msgid "Repeat By:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:50 +msgid "day of the month" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:50 +msgid "day of the week" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:56 +#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowBuilder.php:46 +msgid "Date End:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:69 +msgid "No End?" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:106 +msgid "End date must be after start date" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:113 +msgid "Please select a repeat day" +msgstr "" + +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" +msgstr "" + +#: airtime_mvc/application/forms/PasswordChange.php:17 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:120 +#: airtime_mvc/application/forms/EmailServerPreferences.php:82 +#: airtime_mvc/application/forms/EmailServerPreferences.php:81 +msgid "Password" +msgstr "" + +#: airtime_mvc/application/forms/PasswordChange.php:28 +msgid "Confirm new password" +msgstr "" + +#: airtime_mvc/application/forms/PasswordChange.php:36 +msgid "Password confirmation does not match your password." +msgstr "" + +#: airtime_mvc/application/forms/PasswordChange.php:43 +msgid "Get new password" +msgstr "" + +#: airtime_mvc/application/forms/SupportSettings.php:21 +#: airtime_mvc/application/forms/GeneralPreferences.php:21 +#: airtime_mvc/application/forms/RegisterAirtime.php:30 +#: airtime_mvc/application/forms/GeneralPreferences.php:20 +#: airtime_mvc/application/forms/SupportSettings.php:20 +msgid "Station Name" +msgstr "" + +#: airtime_mvc/application/forms/SupportSettings.php:34 +#: airtime_mvc/application/forms/RegisterAirtime.php:39 +#: airtime_mvc/application/forms/SupportSettings.php:33 +msgid "Phone:" +msgstr "" + +#: airtime_mvc/application/forms/SupportSettings.php:57 +#: airtime_mvc/application/forms/RegisterAirtime.php:62 +#: airtime_mvc/application/forms/SupportSettings.php:56 +msgid "Station Web Site:" +msgstr "" + +#: airtime_mvc/application/forms/SupportSettings.php:68 +#: airtime_mvc/application/forms/RegisterAirtime.php:73 +#: airtime_mvc/application/forms/BillingClient.php:102 +#: airtime_mvc/application/forms/SupportSettings.php:67 +msgid "Country:" +msgstr "" + +#: airtime_mvc/application/forms/SupportSettings.php:79 +#: airtime_mvc/application/forms/RegisterAirtime.php:84 +#: airtime_mvc/application/forms/BillingClient.php:70 +#: airtime_mvc/application/forms/SupportSettings.php:78 +msgid "City:" +msgstr "" + +#: airtime_mvc/application/forms/SupportSettings.php:91 +#: airtime_mvc/application/forms/RegisterAirtime.php:96 +#: airtime_mvc/application/forms/SupportSettings.php:90 +msgid "Station Description:" +msgstr "" + +#: airtime_mvc/application/forms/SupportSettings.php:101 +#: airtime_mvc/application/forms/RegisterAirtime.php:106 +#: airtime_mvc/application/forms/SupportSettings.php:100 +msgid "Station Logo:" +msgstr "" + +#: airtime_mvc/application/forms/SupportSettings.php:122 +#: airtime_mvc/application/forms/RegisterAirtime.php:126 +#: airtime_mvc/application/forms/SupportSettings.php:121 +msgid "Promote my station on Sourcefabric.org" +msgstr "" + +#: airtime_mvc/application/forms/SupportSettings.php:148 +#: airtime_mvc/application/forms/RegisterAirtime.php:149 +#: airtime_mvc/application/forms/SupportSettings.php:133 +#, php-format +msgid "By checking this box, I agree to Sourcefabric's %sprivacy policy%s." +msgstr "" + +#: airtime_mvc/application/forms/SupportSettings.php:171 +#: airtime_mvc/application/forms/RegisterAirtime.php:166 +#: airtime_mvc/application/forms/SupportSettings.php:155 +msgid "You have to agree to privacy policy." +msgstr "" + +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 +msgid "" +"'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "" + +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "" + +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" +msgstr "" + +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" +msgstr "" + +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "" + +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:48 +msgid "Enabled:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:57 +msgid "Stream Type:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:77 +msgid "Service Type:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:87 +msgid "Channels:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:88 +msgid "1 - Mono" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:88 +msgid "2 - Stereo" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:97 +msgid "Server" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:109 +#: airtime_mvc/application/forms/EmailServerPreferences.php:100 +#: airtime_mvc/application/forms/EmailServerPreferences.php:99 +msgid "Port" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:141 +msgid "URL" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:171 +msgid "Mount Point" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:195 +msgid "Admin User" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:207 +msgid "Admin Password" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:232 +msgid "Server cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:237 +msgid "Port cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:243 +msgid "Mount cannot be empty with Icecast server." +msgstr "" + +#: airtime_mvc/application/forms/StreamSetting.php:22 +msgid "Hardware Audio Output" +msgstr "" + +#: airtime_mvc/application/forms/StreamSetting.php:33 +msgid "Output Type" +msgstr "" + +#: airtime_mvc/application/forms/StreamSetting.php:44 +#: airtime_mvc/application/forms/StreamSetting.php:22 +msgid "Icecast Vorbis Metadata" +msgstr "" + +#: airtime_mvc/application/forms/StreamSetting.php:54 +#: airtime_mvc/application/forms/StreamSetting.php:32 +msgid "Stream Label:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSetting.php:55 +#: airtime_mvc/application/forms/StreamSetting.php:33 +msgid "Artist - Title" +msgstr "" + +#: airtime_mvc/application/forms/StreamSetting.php:56 +#: airtime_mvc/application/forms/StreamSetting.php:34 +msgid "Show - Artist - Title" +msgstr "" + +#: airtime_mvc/application/forms/StreamSetting.php:57 +#: airtime_mvc/application/forms/StreamSetting.php:35 +msgid "Station name - Show name" +msgstr "" + +#: airtime_mvc/application/forms/StreamSetting.php:63 +#: airtime_mvc/application/forms/StreamSetting.php:41 +msgid "Off Air Metadata" +msgstr "" + +#: airtime_mvc/application/forms/StreamSetting.php:69 +#: airtime_mvc/application/forms/StreamSetting.php:47 +msgid "Enable Replay Gain" +msgstr "" + +#: airtime_mvc/application/forms/StreamSetting.php:75 +#: airtime_mvc/application/forms/StreamSetting.php:53 +msgid "Replay Gain Modifier" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" +msgstr "" + +#: airtime_mvc/application/forms/EmailServerPreferences.php:17 +#: airtime_mvc/application/forms/EmailServerPreferences.php:16 +msgid "Enable System Emails (Password Reset)" +msgstr "" + +#: airtime_mvc/application/forms/EmailServerPreferences.php:27 +#: airtime_mvc/application/forms/EmailServerPreferences.php:26 +msgid "Reset Password 'From' Email" +msgstr "" + +#: airtime_mvc/application/forms/EmailServerPreferences.php:34 +#: airtime_mvc/application/forms/EmailServerPreferences.php:33 +msgid "Configure Mail Server" +msgstr "" + +#: airtime_mvc/application/forms/EmailServerPreferences.php:43 +#: airtime_mvc/application/forms/EmailServerPreferences.php:42 +msgid "Requires Authentication" +msgstr "" + +#: airtime_mvc/application/forms/EmailServerPreferences.php:53 +#: airtime_mvc/application/forms/EmailServerPreferences.php:52 +msgid "Mail Server" +msgstr "" + +#: airtime_mvc/application/forms/EmailServerPreferences.php:67 +#: airtime_mvc/application/forms/EmailServerPreferences.php:66 +msgid "Email Address" +msgstr "" + +#: airtime_mvc/application/forms/Login.php:83 +msgid "Type the characters you see in the picture below." +msgstr "" + +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 +msgid "Day must be specified" +msgstr "" + +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 +msgid "Time must be specified" +msgstr "" + +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:10 +msgid "Use Airtime Authentication:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:16 +msgid "Use Custom Authentication:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:39 +msgid "Custom Password" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:63 +msgid "Username field cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:68 +msgid "Password field cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/ShowBuilder.php:18 +msgid "Date Start:" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:33 +#: airtime_mvc/application/forms/GeneralPreferences.php:32 +msgid "Default Crossfade Duration (s):" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:40 +#: airtime_mvc/application/forms/GeneralPreferences.php:59 +#: airtime_mvc/application/forms/GeneralPreferences.php:78 +#: airtime_mvc/application/forms/GeneralPreferences.php:39 +#: airtime_mvc/application/forms/GeneralPreferences.php:58 +#: airtime_mvc/application/forms/GeneralPreferences.php:77 +msgid "enter a time in seconds 0{.0}" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:52 +#: airtime_mvc/application/forms/GeneralPreferences.php:51 +msgid "Default Fade In (s):" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:71 +#: airtime_mvc/application/forms/GeneralPreferences.php:70 +msgid "Default Fade Out (s):" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:89 +#: airtime_mvc/application/forms/GeneralPreferences.php:88 +#, php-format +msgid "" +"Allow Remote Websites To Access \"Schedule\" Info?%s (Enable this to make " +"front-end widgets work.)" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:90 +#: airtime_mvc/application/forms/GeneralPreferences.php:89 +msgid "Disabled" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:91 +#: airtime_mvc/application/forms/GeneralPreferences.php:90 +msgid "Enabled" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:97 +#: airtime_mvc/application/forms/GeneralPreferences.php:110 +msgid "Default Interface Language" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:105 +#: airtime_mvc/application/forms/GeneralPreferences.php:118 +msgid "Station Timezone" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:113 +#: airtime_mvc/application/forms/GeneralPreferences.php:126 +msgid "Week Starts On" +msgstr "" + +#: airtime_mvc/application/forms/EditUser.php:121 +msgid "Interface Timezone:" +msgstr "" + +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "E-mail" +msgstr "" + +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Restore password" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:118 +msgid "hours" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:119 +msgid "minutes" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "Set smart block type:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:170 +msgid "Static" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:171 +msgid "Dynamic" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:285 +msgid "Allow Repeat Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:302 +msgid "Limit to" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:324 +msgid "Generate playlist content and save criteria" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 +msgid "Generate" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:332 +msgid "Shuffle playlist content" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:500 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:512 +msgid "Limit cannot be empty or smaller than 0" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:505 +msgid "Limit cannot be more than 24 hrs" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:515 +msgid "The value should be an integer" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:518 +msgid "500 is the max item limit value you can set" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 +msgid "You must select Criteria and Modifier" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:536 +msgid "'Length' should be in '00:00:00' format" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:554 +msgid "" +"The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 " +"00:00:00)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:568 +msgid "The value has to be numeric" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:573 +msgid "The value should be less then 2147483648" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +#, php-format +msgid "The value should be less than %s characters" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:585 +msgid "Value cannot be empty" +msgstr "" + +#: airtime_mvc/application/forms/ShowBuilder.php:72 +msgid "Show:" +msgstr "" + +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" +msgstr "" + +#: airtime_mvc/application/forms/EditAudioMD.php:112 +#: airtime_mvc/application/forms/EditAudioMD.php:151 +msgid "ISRC Number:" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:16 +msgid "Automatically Upload Recorded Shows" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:26 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:16 +msgid "Enable SoundCloud Upload" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:36 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:26 +msgid "Automatically Mark Files \"Downloadable\" on SoundCloud" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:47 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:37 +msgid "SoundCloud Email" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:67 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:57 +msgid "SoundCloud Password" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:87 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:77 +msgid "SoundCloud Tags: (separate tags with spaces)" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:99 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:89 +msgid "Default Genre:" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:109 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:99 +msgid "Default Track Type:" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:113 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:103 +msgid "Original" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:114 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:104 +msgid "Remix" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:115 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:105 +msgid "Live" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:116 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:106 +msgid "Recording" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:117 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:107 +msgid "Spoken" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:118 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:108 +msgid "Podcast" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:119 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:109 +msgid "Demo" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:120 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:110 +msgid "Work in progress" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:121 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:111 +msgid "Stem" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:122 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:112 +msgid "Loop" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:123 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:113 +msgid "Sound Effect" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:124 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:114 +msgid "One Shot Sample" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:125 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:115 +msgid "Other" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:133 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:123 +msgid "Default License:" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:137 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:127 +msgid "The work is in the public domain" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:138 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:128 +msgid "All rights are reserved" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:139 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:129 +msgid "Creative Commons Attribution" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:140 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:130 +msgid "Creative Commons Attribution Noncommercial" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:141 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:131 +msgid "Creative Commons Attribution No Derivative Works" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:142 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:132 +msgid "Creative Commons Attribution Share Alike" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:143 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:133 +msgid "Creative Commons Attribution Noncommercial Non Derivate Works" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:144 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:134 +msgid "Creative Commons Attribution Noncommercial Share Alike" +msgstr "" + +#: airtime_mvc/application/forms/AddShowStyle.php:10 +msgid "Background Colour:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowStyle.php:29 +msgid "Text Colour:" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:12 +msgid "Now Playing" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:19 +msgid "Add Media" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:26 +msgid "Library" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:33 +msgid "Calendar" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:40 +msgid "System" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:50 +msgid "Users" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:57 +msgid "Media Folders" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:64 +msgid "Streams" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:83 +msgid "Listener Stats" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:92 +msgid "History" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:97 +msgid "Playout History" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:104 +msgid "History Templates" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:118 +msgid "Getting Started" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:125 +msgid "User Manual" +msgstr "" + +#: airtime_mvc/library/propel/contrib/pear/HTML_QuickForm_Propel/Propel.php:512 +msgid "Please selection an option" +msgstr "" + +#: airtime_mvc/library/propel/contrib/pear/HTML_QuickForm_Propel/Propel.php:531 +msgid "No Records" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/login.phtml:16 +#, php-format +msgid "" +"Airtime copyright © Sourcefabric z.ú. All rights reserved.%sMaintained " +"and distributed under the GNU GPL v.3 by %sSourcefabric z.ú.%s" +msgstr "" + +#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:15 +msgid "Plan type:" +msgstr "" + +#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:27 +msgid "Billing cycle:" +msgstr "" + +#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:35 +msgid "Payment method:" +msgstr "" + +#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:38 +msgid "PayPal" +msgstr "" + +#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:39 +msgid "Credit Card via 2Checkout" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:17 +msgid "First Name:" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:26 +msgid "Last Name:" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:35 +msgid "Company Name:" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:44 +msgid "Email Address:" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:54 +msgid "Address 1:" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:63 +msgid "Address 2:" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:80 +msgid "State/Region:" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:89 +msgid "Zip Code / Postal Code:" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:112 +msgid "Phone Number:" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:121 +msgid "Please choose a security question:" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:126 +msgid "What is the name of your favorite childhood friend?" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:127 +msgid "What school did you attend for sixth grade?" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:128 +msgid "In what city did you meet your spouse/significant other?" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:129 +msgid "What street did you live on in third grade?" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:130 +msgid "What is the first name of the boy or girl that you first kissed?" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:131 +msgid "In what city or town was your first job?" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:135 +msgid "Please enter an answer:" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:152 +msgid "VAT/Tax ID (EU only)" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:162 +msgid "Subscribe to Sourcefabric newsletter" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:139 +msgid "Billing" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:144 +msgid "Account Details" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:151 +#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171 +msgid "Account Plans" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:158 +msgid "View Invoices" +msgstr "" + +#: airtime_mvc/application/views/scripts/plupload/index.phtml:26 +msgid "Failed" +msgstr "" + +#: airtime_mvc/application/views/scripts/plupload/index.phtml:27 +msgid "Pending" +msgstr "" + +#: airtime_mvc/application/views/scripts/plupload/index.phtml:30 +msgid "Recent Uploads" +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/about.phtml:13 +#, php-format +msgid "%sSourcefabric%s z.ú Airtime is distributed under the %sGNU GPL v.3%s" +msgstr "" + +#: airtime_mvc/application/views/scripts/login/index.phtml:7 +msgid "" +"Welcome to the Airtime demo! You can log in using the username 'admin' and " +"the password 'admin'." +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9 +msgid "Purchase an Airtime Pro plan!" +msgstr "" + +#: airtime_mvc/application/views/scripts/billing/invoices.phtml:6 +msgid "" +"Thank you! Your plan has been updated and you will be invoiced during" +" your next billing cycle." +msgstr "" + +#: airtime_mvc/application/views/scripts/billing/invoices.phtml:10 +msgid "" +"Tip: To pay an invoice, click \"View Invoice\"
and look for the " +"\"Checkout\" button." +msgstr "" + +#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172 +msgid "Upgrade today to get more listeners and storage space!" +msgstr "" + +#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:254 +msgid "View Plans" +msgstr "" + +#: airtime_mvc/application/views/scripts/user/add-user.phtml:30 +#, php-format +msgid "" +"Super Admin details can be changed in your Billing " +"Settings." +msgstr "" + +#: airtime_mvc/application/models/Scheduler.php:195 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "" diff --git a/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.mo index 2ea020a6ca8e2677ce382447afbfe276cea2a5dd..7b753ebc09966a3cb41470ea4e342d94150fc0c1 100644 GIT binary patch delta 12 TcmaFP{G55h21fIZ8_gI2BhLip delta 12 TcmaFP{G55h21e738_gI2BgF*d diff --git a/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po b/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po index 78b68b275e..fbb0477086 100644 --- a/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-02-05 10:31+0000\n" +"PO-Revision-Date: 2015-02-07 10:31+0000\n" "Last-Translator: Daniel James \n" "Language-Team: Armenian (Armenia) (http://www.transifex.com/projects/p/airtime/language/hy_AM/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.mo new file mode 100644 index 0000000000000000000000000000000000000000..57b4a6e78c461f6b5a55a351b2cd9523d61e02d7 GIT binary patch literal 434 zcmYLEO-}+b5XI7U0(b)5NF6M8_w8vyKVbwv|PZh zYGr1Bg=2<^y?Is~hOxEyoF%Lk%%}75>BguX21BhpD75)w@H7uQ&rBht>XU3GtOGxI zPbV}!>8hOzuym|4olCXkB>s~A=$n&zSCAAND+)T%wsf2*Q>Sha^~pXQg#DoL4?GWn AYybcN literal 0 HcmV?d00001 diff --git a/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po new file mode 100644 index 0000000000..eb746a6722 --- /dev/null +++ b/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po @@ -0,0 +1,4333 @@ +# +# Translators: +# Daniel James , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Airtime\n" +"POT-Creation-Date: \n" +"PO-Revision-Date: 2014-07-28 11:49+0000\n" +"Last-Translator: Daniel James \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/airtime/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +# ENGLISH (en) original strings for Airtime. +# Copyright (C) 2014 Sourcefabric z.ú. +# This file is distributed under the same license as the Airtime package. +# +#: airtime_mvc/application/layouts/scripts/login.phtml:16 +#, php-format +msgid "" +"Airtime Copyright ©Sourcefabric o.p.s. All rights reserved.%sMaintained" +" and distributed under GNU GPL v.3 by %sSourcefabric o.p.s%s" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/bare.phtml:5 +#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2 +#: airtime_mvc/application/layouts/scripts/livestream.phtml:9 +msgid "Live stream" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/audio-player.phtml:5 +#: airtime_mvc/application/controllers/LocaleController.php:30 +msgid "Audio Player" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/layout.phtml:27 +#: airtime_mvc/application/layouts/scripts/layout.phtml:38 +msgid "Logout" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/layout.phtml:42 +#: airtime_mvc/application/layouts/scripts/layout.phtml:68 +#: airtime_mvc/application/layouts/scripts/layout.phtml:53 +#: airtime_mvc/application/layouts/scripts/layout.phtml:79 +msgid "Play" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/layout.phtml:43 +#: airtime_mvc/application/layouts/scripts/layout.phtml:69 +#: airtime_mvc/application/layouts/scripts/layout.phtml:54 +#: airtime_mvc/application/layouts/scripts/layout.phtml:80 +msgid "Stop" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/layout.phtml:47 +#: airtime_mvc/application/models/Block.php:1347 +#: airtime_mvc/application/controllers/LocaleController.php:272 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/layouts/scripts/layout.phtml:58 +msgid "Cue In" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/layout.phtml:49 +#: airtime_mvc/application/layouts/scripts/layout.phtml:60 +msgid "Set Cue In" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/layout.phtml:54 +#: airtime_mvc/application/models/Block.php:1348 +#: airtime_mvc/application/controllers/LocaleController.php:273 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:56 +#: airtime_mvc/application/layouts/scripts/layout.phtml:65 +msgid "Cue Out" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/layout.phtml:56 +#: airtime_mvc/application/layouts/scripts/layout.phtml:67 +msgid "Set Cue Out" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/layout.phtml:73 +#: airtime_mvc/application/layouts/scripts/layout.phtml:84 +msgid "Cursor" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/layout.phtml:74 +#: airtime_mvc/application/controllers/LocaleController.php:274 +#: airtime_mvc/application/layouts/scripts/layout.phtml:85 +msgid "Fade In" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/layout.phtml:75 +#: airtime_mvc/application/controllers/LocaleController.php:275 +#: airtime_mvc/application/layouts/scripts/layout.phtml:86 +msgid "Fade Out" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1105 +#: airtime_mvc/application/services/HistoryService.php:1145 +#: airtime_mvc/application/services/HistoryService.php:1162 +#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6 +#: airtime_mvc/application/models/Block.php:1363 +#: airtime_mvc/application/controllers/LocaleController.php:66 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:71 +#: airtime_mvc/application/services/HistoryService.php:1108 +#: airtime_mvc/application/services/HistoryService.php:1148 +#: airtime_mvc/application/services/HistoryService.php:1165 +msgid "Title" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1106 +#: airtime_mvc/application/services/HistoryService.php:1146 +#: airtime_mvc/application/services/HistoryService.php:1163 +#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7 +#: airtime_mvc/application/models/Block.php:1349 +#: airtime_mvc/application/controllers/LocaleController.php:67 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/services/HistoryService.php:1109 +#: airtime_mvc/application/services/HistoryService.php:1149 +#: airtime_mvc/application/services/HistoryService.php:1166 +msgid "Creator" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1107 +#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8 +#: airtime_mvc/application/models/Block.php:1341 +#: airtime_mvc/application/controllers/LocaleController.php:68 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:49 +#: airtime_mvc/application/services/HistoryService.php:1110 +msgid "Album" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1108 +#: airtime_mvc/application/services/HistoryService.php:1165 +#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9 +#: airtime_mvc/application/models/Block.php:1357 +#: airtime_mvc/application/controllers/LocaleController.php:81 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:65 +#: airtime_mvc/application/services/HistoryService.php:1111 +#: airtime_mvc/application/services/HistoryService.php:1168 +msgid "Length" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1109 +#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10 +#: airtime_mvc/application/models/Block.php:1351 +#: airtime_mvc/application/controllers/LocaleController.php:75 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:132 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 +#: airtime_mvc/application/services/HistoryService.php:1112 +msgid "Genre" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1110 +#: airtime_mvc/application/models/Block.php:1359 +#: airtime_mvc/application/controllers/LocaleController.php:83 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:67 +#: airtime_mvc/application/services/HistoryService.php:1113 +msgid "Mood" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1111 +#: airtime_mvc/application/models/Block.php:1353 +#: airtime_mvc/application/controllers/LocaleController.php:77 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:61 +#: airtime_mvc/application/services/HistoryService.php:1114 +msgid "Label" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1112 +#: airtime_mvc/application/services/HistoryService.php:1166 +#: airtime_mvc/application/models/Block.php:1344 +#: airtime_mvc/application/controllers/LocaleController.php:71 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 +#: airtime_mvc/application/services/HistoryService.php:1115 +#: airtime_mvc/application/services/HistoryService.php:1169 +msgid "Composer" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1113 +#: airtime_mvc/application/models/Block.php:1352 +#: airtime_mvc/application/controllers/LocaleController.php:76 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:60 +#: airtime_mvc/application/services/HistoryService.php:1116 +msgid "ISRC" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1114 +#: airtime_mvc/application/services/HistoryService.php:1167 +#: airtime_mvc/application/models/Block.php:1346 +#: airtime_mvc/application/controllers/LocaleController.php:73 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:54 +#: airtime_mvc/application/services/HistoryService.php:1117 +#: airtime_mvc/application/services/HistoryService.php:1170 +msgid "Copyright" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1115 +#: airtime_mvc/application/models/Block.php:1367 +#: airtime_mvc/application/controllers/LocaleController.php:90 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:75 +#: airtime_mvc/application/services/HistoryService.php:1118 +msgid "Year" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1116 +#: airtime_mvc/application/services/HistoryService.php:1119 +msgid "Track" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1117 +#: airtime_mvc/application/models/Block.php:1345 +#: airtime_mvc/application/controllers/LocaleController.php:72 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:53 +#: airtime_mvc/application/services/HistoryService.php:1120 +msgid "Conductor" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1118 +#: airtime_mvc/application/models/Block.php:1354 +#: airtime_mvc/application/controllers/LocaleController.php:78 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:62 +#: airtime_mvc/application/services/HistoryService.php:1121 +msgid "Language" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1143 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +#: airtime_mvc/application/services/HistoryService.php:1146 +msgid "Start Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1144 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +#: airtime_mvc/application/services/HistoryService.php:1147 +msgid "End Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1164 +#: airtime_mvc/application/services/HistoryService.php:1167 +msgid "Played" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:65 +#: airtime_mvc/application/controllers/LibraryController.php:282 +#: airtime_mvc/application/controllers/LibraryController.php:280 +msgid "View on Soundcloud" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:70 +#: airtime_mvc/application/controllers/LibraryController.php:288 +#: airtime_mvc/application/controllers/LibraryController.php:286 +msgid "Upload to SoundCloud" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:70 +#: airtime_mvc/application/controllers/LibraryController.php:286 +#: airtime_mvc/application/controllers/LibraryController.php:284 +msgid "Re-upload to SoundCloud" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:77 +#: airtime_mvc/application/services/CalendarService.php:121 +#: airtime_mvc/application/services/CalendarService.php:120 +msgid "Show Content" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:93 +#: airtime_mvc/application/services/CalendarService.php:100 +#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:15 +#: airtime_mvc/application/controllers/LocaleController.php:303 +#: airtime_mvc/application/services/CalendarService.php:96 +msgid "Add / Remove Content" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:111 +#: airtime_mvc/application/services/CalendarService.php:109 +msgid "Remove All Content" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:131 +#: airtime_mvc/application/services/CalendarService.php:135 +#: airtime_mvc/application/services/CalendarService.php:130 +#: airtime_mvc/application/services/CalendarService.php:134 +msgid "Cancel Current Show" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:152 +#: airtime_mvc/application/services/CalendarService.php:167 +#: airtime_mvc/application/services/CalendarService.php:151 +#: airtime_mvc/application/services/CalendarService.php:166 +msgid "Edit This Instance" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:157 +#: airtime_mvc/application/controllers/LibraryController.php:241 +#: airtime_mvc/application/controllers/LibraryController.php:263 +#: airtime_mvc/application/controllers/LibraryController.php:239 +#: airtime_mvc/application/controllers/LibraryController.php:261 +#: airtime_mvc/application/services/CalendarService.php:156 +msgid "Edit" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:162 +#: airtime_mvc/application/services/CalendarService.php:173 +#: airtime_mvc/application/services/CalendarService.php:161 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:186 +#: airtime_mvc/application/services/CalendarService.php:201 +#: airtime_mvc/application/services/CalendarService.php:206 +#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:19 +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:30 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:27 +#: airtime_mvc/application/controllers/LibraryController.php:217 +#: airtime_mvc/application/controllers/LibraryController.php:246 +#: airtime_mvc/application/controllers/LibraryController.php:265 +#: airtime_mvc/application/controllers/ShowbuilderController.php:202 +#: airtime_mvc/application/controllers/LibraryController.php:215 +#: airtime_mvc/application/controllers/LibraryController.php:244 +#: airtime_mvc/application/controllers/LibraryController.php:263 +#: airtime_mvc/application/controllers/ShowbuilderController.php:210 +#: airtime_mvc/application/services/CalendarService.php:185 +#: airtime_mvc/application/services/CalendarService.php:200 +#: airtime_mvc/application/services/CalendarService.php:205 +msgid "Delete" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:191 +#: airtime_mvc/application/services/CalendarService.php:190 +msgid "Delete This Instance" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:196 +#: airtime_mvc/application/services/CalendarService.php:195 +msgid "Delete This Instance and All Following" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:250 +#: airtime_mvc/application/services/CalendarService.php:249 +msgid "Permission denied" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:254 +#: airtime_mvc/application/services/CalendarService.php:253 +msgid "Can't drag and drop repeating shows" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:263 +#: airtime_mvc/application/services/CalendarService.php:262 +msgid "Can't move a past show" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:281 +#: airtime_mvc/application/services/CalendarService.php:297 +msgid "Can't move show into past" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:288 +#: airtime_mvc/application/forms/AddShowWhen.php:280 +#: airtime_mvc/application/forms/AddShowWhen.php:294 +#: airtime_mvc/application/forms/AddShowWhen.php:318 +#: airtime_mvc/application/forms/AddShowWhen.php:324 +#: airtime_mvc/application/forms/AddShowWhen.php:329 +#: airtime_mvc/application/forms/AddShowWhen.php:274 +#: airtime_mvc/application/forms/AddShowWhen.php:288 +#: airtime_mvc/application/services/CalendarService.php:304 +msgid "Cannot schedule overlapping shows" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:301 +#: airtime_mvc/application/services/CalendarService.php:317 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:311 +#: airtime_mvc/application/services/CalendarService.php:327 +msgid "Show was deleted because recorded show does not exist!" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:318 +#: airtime_mvc/application/services/CalendarService.php:334 +msgid "Must wait 1 hour to rebroadcast." +msgstr "" + +#: airtime_mvc/application/views/scripts/preference/index.phtml:2 +#: airtime_mvc/application/configs/navigation.php:45 +msgid "Preferences" +msgstr "" + +#: airtime_mvc/application/views/scripts/preference/index.phtml:6 +#: airtime_mvc/application/views/scripts/preference/index.phtml:14 +#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:6 +#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:115 +#: airtime_mvc/application/views/scripts/form/edit-user.phtml:160 +#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:16 +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:27 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:24 +#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 +#: airtime_mvc/application/controllers/LocaleController.php:285 +#: airtime_mvc/application/forms/AddUser.php:106 +#: airtime_mvc/application/forms/SupportSettings.php:158 +#: airtime_mvc/application/forms/EditHistory.php:131 +#: airtime_mvc/application/forms/EditAudioMD.php:135 +#: airtime_mvc/application/forms/EditAudioMD.php:182 +#: airtime_mvc/application/forms/BillingClient.php:193 +#: airtime_mvc/application/forms/SupportSettings.php:143 +#: airtime_mvc/application/views/scripts/form/edit-user.phtml:161 +msgid "Save" +msgstr "" + +#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2 +#: airtime_mvc/application/controllers/LocaleController.php:156 +msgid "Manage Media Folders" +msgstr "" + +#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2 +msgid "Stream Settings" +msgstr "" + +#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:12 +msgid "Global Settings" +msgstr "" + +#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:87 +msgid "dB" +msgstr "" + +#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:106 +msgid "Output Stream Settings" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9 +#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27 +msgid "Choose folder" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10 +msgid "Set" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19 +msgid "Current Import Folder:" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28 +#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 +#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41 +#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 +msgid "Add" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:43 +msgid "" +"Rescan watched directory (This is useful if it is network mount and may be " +"out of sync with Airtime)" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44 +msgid "Remove watched directory" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:50 +msgid "You are not watching any media folders." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1 +msgid "Register Airtime" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6 +#, php-format +msgid "" +"Help Airtime improve by letting us know how you are using it. This info will" +" be collected regularly in order to enhance your user experience.%sClick " +"'Yes, help Airtime' and we'll make sure the features you use are constantly " +"improving." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:25 +#, php-format +msgid "" +"Click the box below to advertise your station on %sSourcefabric.org%s. In " +"order to promote your station, 'Send support feedback' must be enabled. This" +" data will be collected in addition to the support feedback." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:47 +#: airtime_mvc/application/views/scripts/form/preferences_email_server.phtml:44 +#: airtime_mvc/application/views/scripts/form/preferences_email_server.phtml:74 +#: airtime_mvc/application/views/scripts/form/preferences_email_server.phtml:90 +#: airtime_mvc/application/views/scripts/form/preferences_general.phtml:97 +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46 +#: airtime_mvc/application/views/scripts/form/preferences_soundcloud.phtml:44 +#: airtime_mvc/application/views/scripts/form/preferences_soundcloud.phtml:59 +#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:34 +#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:48 +#: airtime_mvc/application/views/scripts/form/preferences_soundcloud.phtml:31 +#: airtime_mvc/application/views/scripts/form/preferences_soundcloud.phtml:46 +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5 +#: airtime_mvc/application/views/scripts/form/preferences_general.phtml:115 +msgid "(Required)" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:65 +#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:79 +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:61 +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:76 +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:20 +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:35 +msgid "(for verification purposes only, will not be published)" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:150 +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:151 +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:110 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:164 +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:164 +msgid "Show me what I am sending " +msgstr "" + +#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:178 +msgid "Terms and Conditions" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7 +msgid "Find Shows" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:12 +msgid "Filter By Show:" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/login.phtml:34 +#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3 +msgid "Reset password" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:3 +msgid "Smart Block Options" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:39 +msgid "or" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:40 +msgid "and" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:63 +msgid " to " +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:120 +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:133 +msgid "files meet the criteria" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:127 +msgid "file meet the criteria" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:53 +msgid "Connection URL: " +msgstr "" + +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5 +#, php-format +msgid "" +"Help Airtime improve by letting Sourcefabric know how you are using it. This" +" information will be collected regularly in order to enhance your user " +"experience.%sClick the 'Send support feedback' box and we'll make sure the " +"features you use are constantly improving." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:23 +#, php-format +msgid "Click the box below to promote your station on %sSourcefabric.org%s." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:41 +msgid "" +"(In order to promote your station, 'Send support feedback' must be enabled)." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:186 +msgid "Sourcefabric Privacy Policy" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:2 +msgid "Input Stream Settings" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:109 +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:81 +msgid "Master Source Connection URL:" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:115 +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:159 +msgid "Override" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:120 +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:164 +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:87 +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:98 +msgid "OK" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:120 +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:164 +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:87 +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:98 +msgid "RESET" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:153 +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:92 +msgid "Show Source Connection URL:" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 +msgid "Choose Days:" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 +#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18 +msgid "Remove" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4 +msgid "Repeat Days:" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences.phtml:5 +msgid "Email / Mail Server Settings" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences.phtml:10 +#: airtime_mvc/application/views/scripts/form/preferences.phtml:5 +msgid "SoundCloud Settings" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1 +#, php-format +msgid "%s's Settings" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45 +msgid "Choose Show Instance" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53 +#: airtime_mvc/application/controllers/LocaleController.php:391 +#: airtime_mvc/application/forms/EditHistoryItem.php:57 +msgid "No Show" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56 +msgid "Find" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4 +msgid "Stream " +msgstr "" + +#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:77 +msgid "Additional Options" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:137 +msgid "" +"The following info will be displayed to listeners in their media player:" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:170 +msgid "(Your radio station website)" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:208 +msgid "Stream URL: " +msgstr "" + +#: airtime_mvc/application/views/scripts/form/daterange.phtml:6 +msgid "Filter History" +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3 +msgid "Welcome to Airtime!" +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/help.phtml:4 +msgid "" +"Here's how you can get started using Airtime to automate your broadcasts: " +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7 +msgid "" +"Begin by adding your files to the library using the 'Add Media' menu button." +" You can drag and drop your files to this window too." +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8 +msgid "" +"Create a show by going to 'Calendar' in the menu bar, and then clicking the " +"'+ Show' icon. This can be either a one-time or repeating show. Only admins " +"and program managers can add shows." +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9 +msgid "" +"Add media to the show by going to your show in the Schedule calendar, left-" +"clicking on it and selecting 'Add / Remove Content'" +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10 +msgid "" +"Select your media from the left pane and drag them to your show in the right" +" pane." +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/help.phtml:12 +msgid "Then you're good to go!" +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/help.phtml:13 +#, php-format +msgid "For more detailed help, read the %suser manual%s." +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2 +#: airtime_mvc/application/configs/navigation.php:130 +msgid "About" +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/about.phtml:5 +#, php-format +msgid "" +"%sAirtime%s %s, the open radio software for scheduling and remote station " +"management. %s" +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/about.phtml:13 +#, php-format +msgid "" +"%sSourcefabric%s o.p.s. Airtime is distributed under the %sGNU GPL v.3%s" +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3 +msgid "Share" +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64 +msgid "Select stream:" +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90 +#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60 +msgid "mute" +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91 +#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63 +msgid "unmute" +msgstr "" + +#: airtime_mvc/application/views/scripts/login/index.phtml:3 +#: airtime_mvc/application/forms/Login.php:65 +msgid "Login" +msgstr "" + +#: airtime_mvc/application/views/scripts/login/index.phtml:7 +msgid "" +"Welcome to the online Airtime demo! You can log in using the username " +"'admin' and the password 'admin'." +msgstr "" + +#: airtime_mvc/application/views/scripts/login/password-restore.phtml:7 +msgid "" +"Please enter your account e-mail address. You will receive a link to create " +"a new password via e-mail." +msgstr "" + +#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3 +msgid "Email sent" +msgstr "" + +#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6 +msgid "An email has been sent" +msgstr "" + +#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:7 +msgid "Back to login screen" +msgstr "" + +#: airtime_mvc/application/views/scripts/login/password-change.phtml:3 +msgid "New password" +msgstr "" + +#: airtime_mvc/application/views/scripts/login/password-change.phtml:6 +msgid "Please enter and confirm your new password in the fields below." +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3 +msgid "Your trial expires in" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9 +msgid "Purchase your copy of Airtime" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9 +msgid "My Account" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/header.phtml:3 +msgid "Previous:" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/header.phtml:10 +msgid "Next:" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/header.phtml:24 +msgid "Source Streams" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/header.phtml:29 +msgid "Master Source" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/header.phtml:38 +msgid "Show Source" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/header.phtml:45 +msgid "Scheduled Play" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/header.phtml:54 +msgid "ON AIR" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/header.phtml:55 +msgid "Listen" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/header.phtml:59 +msgid "Station time" +msgstr "" + +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3 +#: airtime_mvc/application/controllers/LocaleController.php:353 +#: airtime_mvc/application/controllers/LocaleController.php:381 +msgid "Close" +msgstr "" + +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6 +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:40 +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:34 +msgid "Add this show" +msgstr "" + +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6 +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:40 +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:34 +msgid "Update show" +msgstr "" + +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10 +msgid "What" +msgstr "" + +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 +msgid "When" +msgstr "" + +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:19 +msgid "Live Stream Input" +msgstr "" + +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:23 +msgid "Record & Rebroadcast" +msgstr "" + +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:29 +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:23 +msgid "Who" +msgstr "" + +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:33 +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:27 +msgid "Style" +msgstr "" + +#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5 +#: airtime_mvc/application/controllers/LocaleController.php:264 +msgid "Start" +msgstr "" + +#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:4 +msgid "Service" +msgstr "" + +#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:5 +#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:8 +#: airtime_mvc/application/controllers/LocaleController.php:363 +#: airtime_mvc/application/controllers/LocaleController.php:364 +#: airtime_mvc/application/configs/navigation.php:76 +msgid "Status" +msgstr "" + +#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:6 +msgid "Uptime" +msgstr "" + +#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:7 +msgid "CPU" +msgstr "" + +#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:8 +msgid "Memory" +msgstr "" + +#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:14 +msgid "Airtime Version" +msgstr "" + +#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 +msgid "Disk Space" +msgstr "" + +#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:3 +#: airtime_mvc/application/views/scripts/library/library.phtml:3 +msgid "File import in progress..." +msgstr "" + +#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:5 +#: airtime_mvc/application/views/scripts/library/library.phtml:10 +msgid "Advanced Search Options" +msgstr "" + +#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2 +msgid "Listener Count Over Time" +msgstr "" + +#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:5 +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:11 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:11 +msgid "New" +msgstr "" + +#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8 +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:14 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:14 +msgid "New Playlist" +msgstr "" + +#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:9 +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:15 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:15 +msgid "New Smart Block" +msgstr "" + +#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:10 +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:16 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:16 +msgid "New Webstream" +msgstr "" + +#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:39 +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:53 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:55 +msgid "View / edit description" +msgstr "" + +#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:41 +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:55 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:57 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:162 +msgid "Description" +msgstr "" + +#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:52 +msgid "Stream URL:" +msgstr "" + +#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:57 +msgid "Default Length:" +msgstr "" + +#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:64 +msgid "No webstream" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:21 +msgid "Empty playlist content" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:21 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:21 +msgid "Clear" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:24 +msgid "Shuffle playlist" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:24 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:334 +msgid "Shuffle" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:27 +msgid "Save playlist" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:34 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:31 +msgid "Playlist crossfade" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:67 +#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:72 +msgid "Fade in: " +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:70 +#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:75 +msgid "Fade out: " +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:85 +msgid "No open playlist" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3 +#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3 +msgid "Show Waveform" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6 +#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:72 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:75 +msgid "(ss.t)" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:21 +msgid "Empty smart block content" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:90 +msgid "No open smart block" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5 +msgid "Cue In: " +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5 +#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12 +msgid "(hh:mm:ss.t)" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12 +msgid "Cue Out: " +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19 +msgid "Original Length:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:54 +msgid "Expand Static Block" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:59 +msgid "Expand Dynamic Block" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:135 +msgid "Empty smart block" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:137 +msgid "Empty playlist" +msgstr "" + +#: airtime_mvc/application/views/scripts/error/error.phtml:6 +msgid "Zend Framework Default Application" +msgstr "" + +#: airtime_mvc/application/views/scripts/error/error.phtml:10 +msgid "Page not found!" +msgstr "" + +#: airtime_mvc/application/views/scripts/error/error.phtml:11 +msgid "Looks like the page you were looking for doesn't exist!" +msgstr "" + +#: airtime_mvc/application/views/scripts/error/error.phtml:13 +#: airtime_mvc/application/configs/navigation.php:113 +msgid "Help" +msgstr "" + +#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23 +msgid "previous" +msgstr "" + +#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28 +msgid "play" +msgstr "" + +#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32 +msgid "pause" +msgstr "" + +#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37 +msgid "next" +msgstr "" + +#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42 +msgid "stop" +msgstr "" + +#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69 +msgid "max volume" +msgstr "" + +#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79 +msgid "Update Required" +msgstr "" + +#: airtime_mvc/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 "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 +msgid "Creating File Summary Template" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 +msgid "Creating Log Sheet Template" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:153 +msgid "Name" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 +msgid "Add more elements" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 +msgid "Add New Field" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 +msgid "Set Default Template" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:4 +msgid "Log Sheet Templates" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:7 +msgid "No Log Sheet Templates" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:25 +#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:56 +#: airtime_mvc/application/controllers/LocaleController.php:388 +msgid "Set Default" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:31 +msgid "New Log Sheet Template" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:35 +msgid "File Summary Templates" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:38 +msgid "No File Summary Templates" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:62 +msgid "New File Summary Template" +msgstr "" + +#: airtime_mvc/application/views/scripts/user/add-user.phtml:3 +msgid "Manage Users" +msgstr "" + +#: airtime_mvc/application/views/scripts/user/add-user.phtml:10 +msgid "New User" +msgstr "" + +#: airtime_mvc/application/views/scripts/user/add-user.phtml:17 +msgid "id" +msgstr "" + +#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +#: airtime_mvc/application/forms/PasswordRestore.php:25 +msgid "Username" +msgstr "" + +#: airtime_mvc/application/views/scripts/user/add-user.phtml:19 +msgid "First Name" +msgstr "" + +#: airtime_mvc/application/views/scripts/user/add-user.phtml:20 +msgid "Last Name" +msgstr "" + +#: airtime_mvc/application/views/scripts/user/add-user.phtml:21 +msgid "User Type" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 +#: airtime_mvc/application/forms/EditAudioMD.php:19 +#: airtime_mvc/application/forms/EditAudioMD.php:25 +msgid "Title:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148 +#: airtime_mvc/application/forms/EditAudioMD.php:26 +#: airtime_mvc/application/forms/EditAudioMD.php:40 +msgid "Creator:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 +#: airtime_mvc/application/forms/EditAudioMD.php:33 +#: airtime_mvc/application/forms/EditAudioMD.php:50 +msgid "Album:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12 +#: airtime_mvc/application/forms/EditAudioMD.php:40 +msgid "Track:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147 +msgid "Length:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14 +msgid "Sample Rate:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:67 +msgid "Bit Rate:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 +#: airtime_mvc/application/forms/EditAudioMD.php:88 +#: airtime_mvc/application/forms/EditAudioMD.php:121 +msgid "Mood:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 +#: airtime_mvc/application/forms/AddShowWhat.php:45 +#: airtime_mvc/application/forms/EditAudioMD.php:47 +#: airtime_mvc/application/forms/EditAudioMD.php:68 +msgid "Genre:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 +#: airtime_mvc/application/forms/EditAudioMD.php:55 +#: airtime_mvc/application/forms/EditAudioMD.php:78 +msgid "Year:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 +#: airtime_mvc/application/forms/EditAudioMD.php:67 +#: airtime_mvc/application/forms/EditAudioMD.php:91 +msgid "Label:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 +#: airtime_mvc/application/forms/EditAudioMD.php:96 +#: airtime_mvc/application/forms/EditAudioMD.php:131 +msgid "BPM:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 +#: airtime_mvc/application/forms/EditAudioMD.php:74 +#: airtime_mvc/application/forms/EditAudioMD.php:101 +msgid "Composer:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 +#: airtime_mvc/application/forms/EditAudioMD.php:81 +#: airtime_mvc/application/forms/EditAudioMD.php:111 +msgid "Conductor:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 +#: airtime_mvc/application/forms/EditAudioMD.php:105 +#: airtime_mvc/application/forms/EditAudioMD.php:141 +msgid "Copyright:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24 +msgid "Isrc Number:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 +#: airtime_mvc/application/forms/EditAudioMD.php:119 +#: airtime_mvc/application/forms/EditAudioMD.php:161 +msgid "Website:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 +#: airtime_mvc/application/forms/Login.php:48 +#: airtime_mvc/application/forms/EditUser.php:114 +#: airtime_mvc/application/forms/EditAudioMD.php:126 +#: airtime_mvc/application/forms/EditAudioMD.php:171 +msgid "Language:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27 +msgid "File Path:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146 +#: airtime_mvc/application/forms/AddShowWhat.php:26 +msgid "Name:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149 +#: airtime_mvc/application/forms/AddShowWhat.php:54 +msgid "Description:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45 +msgid "Web Stream" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46 +msgid "Dynamic Smart Block" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47 +msgid "Static Smart Block" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48 +msgid "Audio Track" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63 +msgid "Playlist Contents: " +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65 +msgid "Static Smart Block Contents: " +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104 +msgid "Dynamic Smart Block Criteria: " +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137 +msgid "Limit to " +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150 +#: airtime_mvc/application/forms/AddShowWhat.php:36 +msgid "URL:" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:7 +msgid "Log Sheet" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8 +msgid "File Summary" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:10 +msgid "Show Summary" +msgstr "" + +#: airtime_mvc/application/models/Show.php:180 +msgid "Shows can have a max length of 24 hours." +msgstr "" + +#: airtime_mvc/application/models/Show.php:278 +#: airtime_mvc/application/forms/AddShowWhen.php:141 +msgid "End date/time cannot be in the past" +msgstr "" + +#: airtime_mvc/application/models/Show.php:289 +msgid "" +"Cannot schedule overlapping shows.\n" +"Note: Resizing a repeating show affects all of its repeats." +msgstr "" + +#: airtime_mvc/application/models/ShowInstance.php:257 +msgid "can't resize a past show" +msgstr "" + +#: airtime_mvc/application/models/ShowInstance.php:279 +msgid "Should not overlap shows" +msgstr "" + +#: airtime_mvc/application/models/Preference.php:655 +#: airtime_mvc/application/models/Preference.php:666 +msgid "Select Country" +msgstr "" + +#: airtime_mvc/application/models/MusicDir.php:160 +#, php-format +msgid "%s is already watched." +msgstr "" + +#: airtime_mvc/application/models/MusicDir.php:164 +#, php-format +msgid "%s contains nested watched directory: %s" +msgstr "" + +#: airtime_mvc/application/models/MusicDir.php:168 +#, php-format +msgid "%s is nested within existing watched directory: %s" +msgstr "" + +#: airtime_mvc/application/models/MusicDir.php:189 +#: airtime_mvc/application/models/MusicDir.php:368 +#: airtime_mvc/application/models/MusicDir.php:370 +#, php-format +msgid "%s is not a valid directory." +msgstr "" + +#: airtime_mvc/application/models/MusicDir.php:232 +#, php-format +msgid "" +"%s is already set as the current storage dir or in the watched folders list" +msgstr "" + +#: airtime_mvc/application/models/MusicDir.php:386 +#: airtime_mvc/application/models/MusicDir.php:388 +#, php-format +msgid "" +"%s is already set as the current storage dir or in the watched folders list." +msgstr "" + +#: airtime_mvc/application/models/MusicDir.php:429 +#: airtime_mvc/application/models/MusicDir.php:431 +#, php-format +msgid "%s doesn't exist in the watched list." +msgstr "" + +#: airtime_mvc/application/models/Block.php:333 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:120 +msgid "items" +msgstr "" + +#: airtime_mvc/application/models/Block.php:833 +#: airtime_mvc/application/models/Playlist.php:812 +msgid "Cue in and cue out are null." +msgstr "" + +#: airtime_mvc/application/models/Block.php:868 +#: airtime_mvc/application/models/Block.php:924 +#: airtime_mvc/application/models/Playlist.php:851 +#: airtime_mvc/application/models/Playlist.php:895 +msgid "Can't set cue out to be greater than file length." +msgstr "" + +#: airtime_mvc/application/models/Block.php:879 +#: airtime_mvc/application/models/Block.php:900 +#: airtime_mvc/application/models/Playlist.php:843 +#: airtime_mvc/application/models/Playlist.php:868 +msgid "Can't set cue in to be larger than cue out." +msgstr "" + +#: airtime_mvc/application/models/Block.php:935 +#: airtime_mvc/application/models/Playlist.php:887 +msgid "Can't set cue out to be smaller than cue in." +msgstr "" + +#: airtime_mvc/application/models/Block.php:1340 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:48 +msgid "Select criteria" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1342 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 +msgid "Bit Rate (Kbps)" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1343 +#: airtime_mvc/application/controllers/LocaleController.php:70 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:51 +msgid "BPM" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1350 +#: airtime_mvc/application/controllers/LocaleController.php:74 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:58 +msgid "Encoded By" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1355 +#: airtime_mvc/application/controllers/LocaleController.php:79 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:63 +msgid "Last Modified" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1356 +#: airtime_mvc/application/controllers/LocaleController.php:80 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:64 +msgid "Last Played" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1358 +#: airtime_mvc/application/controllers/LocaleController.php:82 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:66 +msgid "Mime" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1360 +#: airtime_mvc/application/controllers/LocaleController.php:84 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:68 +msgid "Owner" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1361 +#: airtime_mvc/application/controllers/LocaleController.php:85 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:69 +msgid "Replay Gain" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1362 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:70 +msgid "Sample Rate (kHz)" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1364 +#: airtime_mvc/application/controllers/LocaleController.php:87 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:72 +msgid "Track Number" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1365 +#: airtime_mvc/application/controllers/LocaleController.php:88 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 +msgid "Uploaded" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1366 +#: airtime_mvc/application/controllers/LocaleController.php:89 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +msgid "Website" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1371 +#: airtime_mvc/application/controllers/LocaleController.php:141 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:87 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:103 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:251 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:366 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:404 +msgid "Select modifier" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1372 +#: airtime_mvc/application/controllers/LocaleController.php:142 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:88 +msgid "contains" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1373 +#: airtime_mvc/application/controllers/LocaleController.php:143 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:89 +msgid "does not contain" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1374 +#: airtime_mvc/application/models/Block.php:1378 +#: airtime_mvc/application/controllers/LocaleController.php:144 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:90 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:104 +msgid "is" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1375 +#: airtime_mvc/application/models/Block.php:1379 +#: airtime_mvc/application/controllers/LocaleController.php:145 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:91 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:105 +msgid "is not" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1376 +#: airtime_mvc/application/controllers/LocaleController.php:146 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:92 +msgid "starts with" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1377 +#: airtime_mvc/application/controllers/LocaleController.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:93 +msgid "ends with" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1380 +#: airtime_mvc/application/controllers/LocaleController.php:148 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:106 +msgid "is greater than" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1381 +#: airtime_mvc/application/controllers/LocaleController.php:149 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:107 +msgid "is less than" +msgstr "" + +#: airtime_mvc/application/models/Block.php:1382 +#: airtime_mvc/application/controllers/LocaleController.php:150 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:108 +msgid "is in the range" +msgstr "" + +#: airtime_mvc/application/models/Webstream.php:157 +msgid "Length needs to be greater than 0 minutes" +msgstr "" + +#: airtime_mvc/application/models/Webstream.php:162 +msgid "Length should be of form \"00h 00m\"" +msgstr "" + +#: airtime_mvc/application/models/Webstream.php:175 +msgid "URL should be of form \"http://domain\"" +msgstr "" + +#: airtime_mvc/application/models/Webstream.php:178 +msgid "URL should be 512 characters or less" +msgstr "" + +#: airtime_mvc/application/models/Webstream.php:184 +msgid "No MIME type found for webstream." +msgstr "" + +#: airtime_mvc/application/models/Webstream.php:200 +msgid "Webstream name cannot be empty" +msgstr "" + +#: airtime_mvc/application/models/Webstream.php:269 +msgid "Could not parse XSPF playlist" +msgstr "" + +#: airtime_mvc/application/models/Webstream.php:281 +msgid "Could not parse PLS playlist" +msgstr "" + +#: airtime_mvc/application/models/Webstream.php:300 +msgid "Could not parse M3U playlist" +msgstr "" + +#: airtime_mvc/application/models/Webstream.php:314 +msgid "Invalid webstream - This appears to be a file download." +msgstr "" + +#: airtime_mvc/application/models/Webstream.php:318 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "" + +#: airtime_mvc/application/models/Auth.php:33 +#, php-format +msgid "" +"Hi %s, \n" +"\n" +"Click this link to reset your password: " +msgstr "" + +#: airtime_mvc/application/models/Auth.php:36 +msgid "Airtime Password Reset" +msgstr "" + +#: airtime_mvc/application/models/ShowBuilder.php:212 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "" + +#: airtime_mvc/application/models/Scheduler.php:73 +msgid "Cannot move items out of linked shows" +msgstr "" + +#: airtime_mvc/application/models/Scheduler.php:119 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "" + +#: airtime_mvc/application/models/Scheduler.php:124 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "" + +#: airtime_mvc/application/models/Scheduler.php:132 +#: airtime_mvc/application/models/Scheduler.php:444 +#: airtime_mvc/application/models/Scheduler.php:482 +#: airtime_mvc/application/models/Scheduler.php:460 +#: airtime_mvc/application/models/Scheduler.php:498 +msgid "The schedule you're viewing is out of date!" +msgstr "" + +#: airtime_mvc/application/models/Scheduler.php:142 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "" + +#: airtime_mvc/application/models/Scheduler.php:146 +msgid "You cannot add files to recording shows." +msgstr "" + +#: airtime_mvc/application/models/Scheduler.php:152 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "" + +#: airtime_mvc/application/models/Scheduler.php:159 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "" + +#: airtime_mvc/application/models/Scheduler.php:178 +msgid "" +"Content in linked shows must be scheduled before or after any one is " +"broadcasted" +msgstr "" + +#: airtime_mvc/application/models/Scheduler.php:200 +#: airtime_mvc/application/models/Scheduler.php:289 +#: airtime_mvc/application/models/Scheduler.php:216 +#: airtime_mvc/application/models/Scheduler.php:305 +msgid "A selected File does not exist!" +msgstr "" + +#: airtime_mvc/application/models/StoredFile.php:1003 +msgid "Failed to create 'organize' directory." +msgstr "" + +#: airtime_mvc/application/models/StoredFile.php:1017 +#, php-format +msgid "" +"The file was not uploaded, there is %s MB of disk space left and the file " +"you are uploading has a size of %s MB." +msgstr "" + +#: airtime_mvc/application/models/StoredFile.php:1026 +msgid "" +"This file appears to be corrupted and will not be added to media library." +msgstr "" + +#: airtime_mvc/application/models/StoredFile.php:1065 +msgid "" +"The file was not uploaded, this error can occur if the computer hard drive " +"does not have enough disk space or the stor directory does not have correct " +"write permissions." +msgstr "" + +#: airtime_mvc/application/controllers/DashboardController.php:36 +#: airtime_mvc/application/controllers/DashboardController.php:85 +msgid "You don't have permission to disconnect source." +msgstr "" + +#: airtime_mvc/application/controllers/DashboardController.php:38 +#: airtime_mvc/application/controllers/DashboardController.php:87 +msgid "There is no source connected to this input." +msgstr "" + +#: airtime_mvc/application/controllers/DashboardController.php:82 +msgid "You don't have permission to switch source." +msgstr "" + +#: airtime_mvc/application/controllers/ScheduleController.php:350 +#: airtime_mvc/application/controllers/ScheduleController.php:383 +#, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "" + +#: airtime_mvc/application/controllers/ScheduleController.php:624 +#: airtime_mvc/application/controllers/LibraryController.php:222 +#: airtime_mvc/application/controllers/ScheduleController.php:692 +#: airtime_mvc/application/controllers/LibraryController.php:220 +msgid "Download" +msgstr "" + +#: airtime_mvc/application/controllers/ListenerstatController.php:56 +#: airtime_mvc/application/controllers/ListenerstatController.php:91 +msgid "" +"Please make sure admin user/password is correct on System->Streams page." +msgstr "" + +#: airtime_mvc/application/controllers/ApiController.php:60 +#: airtime_mvc/application/controllers/Apiv2Controller.php:77 +msgid "You are not allowed to access this resource." +msgstr "" + +#: airtime_mvc/application/controllers/ApiController.php:314 +#: airtime_mvc/application/controllers/ApiController.php:376 +#: airtime_mvc/application/controllers/ApiController.php:315 +#: airtime_mvc/application/controllers/ApiController.php:377 +msgid "You are not allowed to access this resource. " +msgstr "" + +#: airtime_mvc/application/controllers/ApiController.php:555 +#: airtime_mvc/application/controllers/ApiController.php:558 +msgid "File does not exist in Airtime." +msgstr "" + +#: airtime_mvc/application/controllers/ApiController.php:575 +#: airtime_mvc/application/controllers/ApiController.php:578 +msgid "File does not exist in Airtime" +msgstr "" + +#: airtime_mvc/application/controllers/ApiController.php:587 +#: airtime_mvc/application/controllers/ApiController.php:590 +msgid "File doesn't exist in Airtime." +msgstr "" + +#: airtime_mvc/application/controllers/ApiController.php:638 +#: airtime_mvc/application/controllers/ApiController.php:641 +msgid "Bad request. no 'mode' parameter passed." +msgstr "" + +#: airtime_mvc/application/controllers/ApiController.php:648 +#: airtime_mvc/application/controllers/ApiController.php:651 +msgid "Bad request. 'mode' parameter is invalid" +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:125 +#: airtime_mvc/application/controllers/PlaylistController.php:130 +#: airtime_mvc/application/controllers/LibraryController.php:123 +#, php-format +msgid "%s not found" +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:134 +#: airtime_mvc/application/controllers/PlaylistController.php:151 +#: airtime_mvc/application/controllers/LibraryController.php:132 +msgid "Something went wrong." +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:189 +#: airtime_mvc/application/controllers/ShowbuilderController.php:194 +#: airtime_mvc/application/controllers/LibraryController.php:187 +#: airtime_mvc/application/controllers/ShowbuilderController.php:202 +msgid "Preview" +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:210 +#: airtime_mvc/application/controllers/LibraryController.php:234 +#: airtime_mvc/application/controllers/LibraryController.php:257 +#: airtime_mvc/application/controllers/LibraryController.php:208 +#: airtime_mvc/application/controllers/LibraryController.php:232 +#: airtime_mvc/application/controllers/LibraryController.php:255 +msgid "Add to Playlist" +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:212 +#: airtime_mvc/application/controllers/LibraryController.php:210 +msgid "Add to Smart Block" +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:218 +#: airtime_mvc/application/controllers/LocaleController.php:57 +#: airtime_mvc/application/controllers/LibraryController.php:216 +msgid "Edit Metadata" +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:226 +#: airtime_mvc/application/controllers/LibraryController.php:224 +msgid "Duplicate Playlist" +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:276 +#: airtime_mvc/application/controllers/LibraryController.php:274 +msgid "Soundcloud" +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:295 +#: airtime_mvc/application/controllers/LibraryController.php:293 +msgid "No action available" +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:315 +#: airtime_mvc/application/controllers/LibraryController.php:313 +msgid "You don't have permission to delete selected items." +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:364 +#: airtime_mvc/application/controllers/LibraryController.php:362 +msgid "Could not delete some scheduled files." +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:404 +#: airtime_mvc/application/controllers/LibraryController.php:402 +#, php-format +msgid "Copy of %s" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:32 +msgid "Recording:" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:33 +msgid "Master Stream" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:34 +msgid "Live Stream" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:35 +msgid "Nothing Scheduled" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:36 +msgid "Current Show:" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:37 +msgid "Current" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:39 +msgid "You are running the latest version" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:40 +msgid "New version available: " +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:41 +msgid "This version will soon be obsolete." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:42 +msgid "This version is no longer supported." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:43 +msgid "Please upgrade to " +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:45 +msgid "Add to current playlist" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:46 +msgid "Add to current smart block" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:47 +msgid "Adding 1 Item" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:48 +#, php-format +msgid "Adding %s Items" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:49 +msgid "You can only add tracks to smart blocks." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:50 +#: airtime_mvc/application/controllers/PlaylistController.php:163 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:53 +msgid "Please select a cursor position on timeline." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:58 +msgid "Add to selected show" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:59 +msgid "Select" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:60 +msgid "Select this page" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:61 +msgid "Deselect this page" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:62 +msgid "Deselect all" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:63 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:64 +msgid "Scheduled" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:65 +msgid "Playlist / Block" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:69 +msgid "Bit Rate" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:86 +msgid "Sample Rate" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:91 +msgid "Loading..." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:92 +#: airtime_mvc/application/controllers/LocaleController.php:392 +#: airtime_mvc/application/views/scripts/plupload/index.phtml:25 +msgid "All" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:93 +msgid "Files" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:94 +msgid "Playlists" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:95 +msgid "Smart Blocks" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:96 +msgid "Web Streams" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:97 +msgid "Unknown type: " +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:98 +msgid "Are you sure you want to delete the selected item?" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:99 +#: airtime_mvc/application/controllers/LocaleController.php:200 +msgid "Uploading in progress..." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:100 +msgid "Retrieving data from the server..." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:101 +msgid "The soundcloud id for this file is: " +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:102 +msgid "There was an error while uploading to soundcloud." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:103 +msgid "Error code: " +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:104 +msgid "Error msg: " +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:105 +msgid "Input must be a positive number" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:106 +msgid "Input must be a number" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:107 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:108 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:111 +#, 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 "" + +#: airtime_mvc/application/controllers/LocaleController.php:113 +msgid "Open Media Builder" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:114 +msgid "please put in a time '00:00:00 (.0)'" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:115 +msgid "please put in a time in seconds '00 (.0)'" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:116 +msgid "Your browser does not support playing this file type: " +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:117 +msgid "Dynamic block is not previewable" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:118 +msgid "Limit to: " +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:119 +msgid "Playlist saved" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:120 +msgid "Playlist shuffled" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:122 +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_mvc/application/controllers/LocaleController.php:124 +#, php-format +msgid "Listener Count on %s: %s" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:126 +msgid "Remind me in 1 week" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:127 +msgid "Remind me never" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:128 +msgid "Yes, help Airtime" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:129 +#: airtime_mvc/application/controllers/LocaleController.php:178 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:132 +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 "" + +#: airtime_mvc/application/controllers/LocaleController.php:134 +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 "" + +#: airtime_mvc/application/controllers/LocaleController.php:136 +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_mvc/application/controllers/LocaleController.php:137 +msgid "Smart block shuffled" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:138 +msgid "Smart block generated and criteria saved" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:139 +msgid "Smart block saved" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:140 +msgid "Processing..." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:152 +msgid "Choose Storage Folder" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:153 +msgid "Choose Folder to Watch" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:155 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:157 +msgid "Are you sure you want to remove the watched folder?" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:158 +msgid "This path is currently not accessible." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:160 +#, php-format +msgid "" +"Some stream types require extra configuration. Details about enabling %sAAC+" +" Support%s or %sOpus Support%s are provided." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:161 +msgid "Connected to the streaming server" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:162 +msgid "The stream is disabled" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:163 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:218 +msgid "Getting information from the server..." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:164 +msgid "Can not connect to the streaming server" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:166 +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_mvc/application/controllers/LocaleController.php:167 +#, php-format +msgid "For more details, please read the %sAirtime Manual%s" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:169 +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 "" + +#: airtime_mvc/application/controllers/LocaleController.php:170 +msgid "" +"Check this box to automatically switch off Master/Show source upon source " +"disconnection." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:171 +msgid "" +"Check this box to automatically switch on Master/Show source upon source " +"connection." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:172 +msgid "" +"If your Icecast server expects a username of 'source', this field can be " +"left blank." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:173 +#: airtime_mvc/application/controllers/LocaleController.php:184 +msgid "" +"If your live streaming client does not ask for a username, this field should" +" be 'source'." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:175 +msgid "" +"If you change the username or password values for an enabled stream the " +"playout engine will be rebooted and your listeners will hear silence for " +"5-10 seconds. Changing the following fields will NOT cause a reboot: Stream " +"Label (Global Settings), and Switch Transition Fade(s), Master Username, and" +" Master Password (Input Stream Settings). If Airtime is recording, and if " +"the change causes a playout engine restart, the recording will be " +"interrupted." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:176 +msgid "" +"This is the admin username and password for Icecast/SHOUTcast to get " +"listener statistics." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:180 +msgid "" +"Warning: You cannot change this field while the show is currently playing" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:181 +msgid "No result found" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:182 +msgid "" +"This follows the same security pattern for the shows: only users assigned to" +" the show can connect." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:183 +msgid "Specify custom authentication which will work only for this show." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:185 +msgid "The show instance doesn't exist anymore!" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:186 +msgid "Warning: Shows cannot be re-linked" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:187 +msgid "" +"By linking your repeating shows any media items scheduled in any repeat show" +" will also get scheduled in the other repeat shows" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:188 +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 "" + +#: airtime_mvc/application/controllers/LocaleController.php:192 +msgid "Show" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:193 +msgid "Show is empty" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:194 +msgid "1m" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:195 +msgid "5m" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:196 +msgid "10m" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:197 +msgid "15m" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:198 +msgid "30m" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:199 +msgid "60m" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:201 +msgid "Retreiving data from the server..." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:207 +msgid "This show has no scheduled content." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:208 +msgid "This show is not completely filled with content." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:212 +msgid "January" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:213 +msgid "February" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:214 +msgid "March" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:215 +msgid "April" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:216 +#: airtime_mvc/application/controllers/LocaleController.php:228 +msgid "May" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:217 +msgid "June" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:218 +msgid "July" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:219 +msgid "August" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:220 +msgid "September" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:221 +msgid "October" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:222 +msgid "November" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:223 +msgid "December" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:224 +msgid "Jan" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:225 +msgid "Feb" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:226 +msgid "Mar" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:227 +msgid "Apr" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:229 +msgid "Jun" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:230 +msgid "Jul" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:231 +msgid "Aug" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:232 +msgid "Sep" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:233 +msgid "Oct" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:234 +msgid "Nov" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:235 +msgid "Dec" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:236 +msgid "today" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:237 +msgid "day" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:238 +msgid "week" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:239 +msgid "month" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:240 +#: airtime_mvc/application/forms/GeneralPreferences.php:123 +#: airtime_mvc/application/forms/GeneralPreferences.php:172 +msgid "Sunday" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:241 +#: airtime_mvc/application/forms/GeneralPreferences.php:124 +#: airtime_mvc/application/forms/GeneralPreferences.php:173 +msgid "Monday" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:242 +#: airtime_mvc/application/forms/GeneralPreferences.php:125 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 +msgid "Tuesday" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:243 +#: airtime_mvc/application/forms/GeneralPreferences.php:126 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 +msgid "Wednesday" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:244 +#: airtime_mvc/application/forms/GeneralPreferences.php:127 +#: airtime_mvc/application/forms/GeneralPreferences.php:176 +msgid "Thursday" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:245 +#: airtime_mvc/application/forms/GeneralPreferences.php:128 +#: airtime_mvc/application/forms/GeneralPreferences.php:177 +msgid "Friday" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:246 +#: airtime_mvc/application/forms/GeneralPreferences.php:129 +#: airtime_mvc/application/forms/GeneralPreferences.php:178 +msgid "Saturday" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:247 +#: airtime_mvc/application/forms/AddShowRepeats.php:35 +msgid "Sun" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:248 +#: airtime_mvc/application/forms/AddShowRepeats.php:36 +msgid "Mon" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:249 +#: airtime_mvc/application/forms/AddShowRepeats.php:37 +msgid "Tue" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:250 +#: airtime_mvc/application/forms/AddShowRepeats.php:38 +msgid "Wed" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:251 +#: airtime_mvc/application/forms/AddShowRepeats.php:39 +msgid "Thu" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:252 +#: airtime_mvc/application/forms/AddShowRepeats.php:40 +msgid "Fri" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:253 +#: airtime_mvc/application/forms/AddShowRepeats.php:41 +msgid "Sat" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:254 +msgid "" +"Shows longer than their scheduled time will be cut off by a following show." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:255 +msgid "Cancel Current Show?" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:256 +#: airtime_mvc/application/controllers/LocaleController.php:300 +msgid "Stop recording current show?" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:257 +msgid "Ok" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:258 +msgid "Contents of Show" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:261 +msgid "Remove all content?" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:263 +msgid "Delete selected item(s)?" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:265 +msgid "End" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:266 +msgid "Duration" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:276 +msgid "Show Empty" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:277 +msgid "Recording From Line In" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:278 +msgid "Track preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:282 +msgid "Cannot schedule outside a show." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:283 +msgid "Moving 1 Item" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:284 +#, php-format +msgid "Moving %s Items" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:286 +#: airtime_mvc/application/controllers/LocaleController.php:309 +#: airtime_mvc/application/forms/EditHistory.php:141 +#: airtime_mvc/application/forms/PasswordRestore.php:46 +#: airtime_mvc/application/forms/EditAudioMD.php:145 +#: airtime_mvc/application/forms/EditAudioMD.php:192 +msgid "Cancel" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:287 +msgid "Fade Editor" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:288 +msgid "Cue Editor" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:289 +msgid "" +"Waveform features are available in a browser supporting the Web Audio API" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:292 +msgid "Select all" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:293 +msgid "Select none" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:294 +msgid "Remove overbooked tracks" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:295 +msgid "Remove selected scheduled items" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:296 +msgid "Jump to the current playing track" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:297 +msgid "Cancel current show" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:302 +msgid "Open library to add or remove content" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:305 +msgid "in use" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:306 +msgid "Disk" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:308 +msgid "Look in" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:310 +msgid "Open" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:312 +#: airtime_mvc/application/forms/AddUser.php:98 +msgid "Admin" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:313 +#: airtime_mvc/application/forms/AddUser.php:96 +msgid "DJ" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:314 +#: airtime_mvc/application/forms/AddUser.php:97 +msgid "Program Manager" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:315 +#: airtime_mvc/application/forms/AddUser.php:95 +msgid "Guest" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:316 +msgid "Guests can do the following:" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:317 +msgid "View schedule" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:318 +msgid "View show content" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:319 +msgid "DJs can do the following:" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:320 +msgid "Manage assigned show content" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:321 +msgid "Import media files" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:322 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:323 +msgid "Manage their own library content" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:324 +msgid "Progam Managers can do the following:" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:325 +msgid "View and manage show content" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:326 +msgid "Schedule shows" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:327 +msgid "Manage all library content" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:328 +msgid "Admins can do the following:" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:329 +msgid "Manage preferences" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:330 +msgid "Manage users" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:331 +msgid "Manage watched folders" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:332 +#: airtime_mvc/application/forms/SupportSettings.php:112 +#: airtime_mvc/application/forms/RegisterAirtime.php:116 +#: airtime_mvc/application/forms/SupportSettings.php:111 +msgid "Send support feedback" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:333 +msgid "View system status" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:334 +msgid "Access playout history" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:335 +msgid "View listener stats" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:337 +msgid "Show / hide columns" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:339 +msgid "From {from} to {to}" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:340 +msgid "kbps" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:341 +msgid "yyyy-mm-dd" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:342 +msgid "hh:mm:ss.t" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:343 +msgid "kHz" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:346 +msgid "Su" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:347 +msgid "Mo" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:348 +msgid "Tu" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:349 +msgid "We" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:350 +msgid "Th" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:351 +msgid "Fr" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:352 +msgid "Sa" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:355 +msgid "Hour" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:356 +msgid "Minute" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:357 +msgid "Done" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:360 +msgid "Select files" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:361 +#: airtime_mvc/application/controllers/LocaleController.php:362 +msgid "Add files to the upload queue and click the start button." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:365 +msgid "Add Files" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:366 +msgid "Stop Upload" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:367 +msgid "Start upload" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:368 +msgid "Add files" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:369 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:370 +msgid "N/A" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:371 +msgid "Drag files here." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:372 +msgid "File extension error." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:373 +msgid "File size error." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:374 +msgid "File count error." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:375 +msgid "Init error." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:376 +msgid "HTTP Error." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:377 +msgid "Security error." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:378 +msgid "Generic error." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:379 +msgid "IO error." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:380 +#, php-format +msgid "File: %s" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:382 +#, php-format +msgid "%d files queued" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:383 +msgid "File: %f, size: %s, max file size: %m" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:384 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:385 +msgid "Error: File too large: " +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:386 +msgid "Error: Invalid file extension: " +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:389 +msgid "Create Entry" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:390 +msgid "Edit History Record" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:393 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:394 +#, php-format +msgid "" +"%sPrint view%sPlease use your browser's print function to print this table. " +"Press escape when finished." +msgstr "" + +#: airtime_mvc/application/controllers/LoginController.php:34 +#: airtime_mvc/application/controllers/LoginController.php:42 +msgid "Please enter your user name and password" +msgstr "" + +#: airtime_mvc/application/controllers/LoginController.php:77 +#: airtime_mvc/application/controllers/LoginController.php:92 +msgid "Wrong username or password provided. Please try again." +msgstr "" + +#: airtime_mvc/application/controllers/LoginController.php:142 +#: airtime_mvc/application/controllers/LoginController.php:159 +msgid "" +"Email could not be sent. Check your mail server settings and ensure it has " +"been configured properly." +msgstr "" + +#: airtime_mvc/application/controllers/LoginController.php:145 +#: airtime_mvc/application/controllers/LoginController.php:162 +msgid "Given email not found." +msgstr "" + +#: airtime_mvc/application/controllers/PreferenceController.php:74 +#: airtime_mvc/application/controllers/PreferenceController.php:62 +msgid "Preferences updated." +msgstr "" + +#: airtime_mvc/application/controllers/PreferenceController.php:125 +#: airtime_mvc/application/controllers/PreferenceController.php:104 +msgid "Support setting updated." +msgstr "" + +#: airtime_mvc/application/controllers/PreferenceController.php:137 +#: airtime_mvc/application/configs/navigation.php:70 +#: airtime_mvc/application/controllers/PreferenceController.php:116 +msgid "Support Feedback" +msgstr "" + +#: airtime_mvc/application/controllers/PreferenceController.php:332 +#: airtime_mvc/application/controllers/PreferenceController.php:273 +msgid "Stream Setting Updated." +msgstr "" + +#: airtime_mvc/application/controllers/PreferenceController.php:365 +#: airtime_mvc/application/controllers/PreferenceController.php:306 +msgid "path should be specified" +msgstr "" + +#: airtime_mvc/application/controllers/PreferenceController.php:460 +#: airtime_mvc/application/controllers/PreferenceController.php:401 +msgid "Problem with Liquidsoap..." +msgstr "" + +#: airtime_mvc/application/controllers/ShowbuilderController.php:196 +#: airtime_mvc/application/controllers/ShowbuilderController.php:204 +msgid "Select cursor" +msgstr "" + +#: airtime_mvc/application/controllers/ShowbuilderController.php:197 +#: airtime_mvc/application/controllers/ShowbuilderController.php:205 +msgid "Remove cursor" +msgstr "" + +#: airtime_mvc/application/controllers/ShowbuilderController.php:216 +#: airtime_mvc/application/controllers/ShowbuilderController.php:224 +msgid "show does not exist" +msgstr "" + +#: airtime_mvc/application/controllers/WebstreamController.php:29 +#: airtime_mvc/application/controllers/WebstreamController.php:33 +msgid "Untitled Webstream" +msgstr "" + +#: airtime_mvc/application/controllers/WebstreamController.php:138 +msgid "Webstream saved." +msgstr "" + +#: airtime_mvc/application/controllers/WebstreamController.php:146 +msgid "Invalid form values." +msgstr "" + +#: airtime_mvc/application/controllers/PlaylistController.php:48 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "" + +#: airtime_mvc/application/controllers/PlaylistController.php:123 +msgid "You cannot add tracks to dynamic blocks." +msgstr "" + +#: airtime_mvc/application/controllers/PlaylistController.php:144 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "" + +#: airtime_mvc/application/controllers/PlaylistController.php:157 +msgid "You can only add tracks to smart block." +msgstr "" + +#: airtime_mvc/application/controllers/PlaylistController.php:175 +msgid "Untitled Playlist" +msgstr "" + +#: airtime_mvc/application/controllers/PlaylistController.php:177 +msgid "Untitled Smart Block" +msgstr "" + +#: airtime_mvc/application/controllers/PlaylistController.php:495 +msgid "Unknown Playlist" +msgstr "" + +#: airtime_mvc/application/controllers/ErrorController.php:17 +msgid "Page not found" +msgstr "" + +#: airtime_mvc/application/controllers/ErrorController.php:22 +msgid "Application error" +msgstr "" + +#: airtime_mvc/application/controllers/UserController.php:82 +#: airtime_mvc/application/controllers/UserController.php:86 +msgid "User added successfully!" +msgstr "" + +#: airtime_mvc/application/controllers/UserController.php:84 +#: airtime_mvc/application/controllers/UserController.php:88 +msgid "User updated successfully!" +msgstr "" + +#: airtime_mvc/application/controllers/UserController.php:154 +#: airtime_mvc/application/controllers/UserController.php:162 +msgid "Settings updated successfully!" +msgstr "" + +#: airtime_mvc/application/common/DateHelper.php:213 +#, php-format +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "" + +#: airtime_mvc/application/common/DateHelper.php:216 +#, php-format +msgid "%s-%s-%s is not a valid date" +msgstr "" + +#: airtime_mvc/application/common/DateHelper.php:240 +#, php-format +msgid "%s:%s:%s is not a valid time" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "" + +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" +msgstr "" + +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" +msgstr "" + +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:25 +#: airtime_mvc/application/forms/Login.php:19 +#: airtime_mvc/application/forms/EditUser.php:32 +msgid "Username:" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:34 +#: airtime_mvc/application/forms/Login.php:34 +#: airtime_mvc/application/forms/EditUser.php:43 +#: airtime_mvc/application/forms/BillingClient.php:172 +msgid "Password:" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:42 +#: airtime_mvc/application/forms/EditUser.php:52 +#: airtime_mvc/application/forms/BillingClient.php:181 +msgid "Verify Password:" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:51 +#: airtime_mvc/application/forms/EditUser.php:62 +msgid "Firstname:" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:57 +#: airtime_mvc/application/forms/EditUser.php:70 +msgid "Lastname:" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:63 +#: airtime_mvc/application/forms/SupportSettings.php:46 +#: airtime_mvc/application/forms/EditUser.php:78 +#: airtime_mvc/application/forms/RegisterAirtime.php:51 +#: airtime_mvc/application/forms/SupportSettings.php:45 +msgid "Email:" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:72 +#: airtime_mvc/application/forms/EditUser.php:89 +msgid "Mobile Phone:" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:78 +#: airtime_mvc/application/forms/EditUser.php:97 +msgid "Skype:" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:84 +#: airtime_mvc/application/forms/EditUser.php:105 +msgid "Jabber:" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:91 +msgid "User Type:" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:116 +#: airtime_mvc/application/forms/EditUser.php:135 +msgid "Login name is not unique." +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 +msgid "Auto Switch Off" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:26 +msgid "Auto Switch On" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:33 +msgid "Switch Transition Fade (s)" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:36 +msgid "enter a time in seconds 00{.000000}" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:45 +msgid "Master Username" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:62 +msgid "Master Password" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:70 +msgid "Master Source Connection URL" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:78 +msgid "Show Source Connection URL" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:87 +msgid "Master Source Port" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:90 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:109 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:112 +msgid "Only numbers are allowed." +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:96 +msgid "Master Source Mount Point" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:99 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:118 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:100 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:123 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:144 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:198 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:210 +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 +#: airtime_mvc/application/forms/DateRange.php:35 +#: airtime_mvc/application/forms/DateRange.php:63 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +msgid "Invalid character entered" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:106 +msgid "Show Source Port" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:115 +msgid "Show Source Mount Point" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:153 +msgid "You cannot use same port as Master DJ port." +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:164 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:182 +#, php-format +msgid "Port %s is not available" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:16 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:22 +msgid "Date/Time Start:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:49 +msgid "Date/Time End:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:74 +msgid "Duration:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:83 +msgid "Timezone:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:92 +msgid "Repeats?" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:124 +msgid "Cannot create show in the past" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:132 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:149 +msgid "Cannot have duration < 0m" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:153 +msgid "Cannot have duration 00h 00m" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:160 +msgid "Cannot have duration greater than 24h" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:10 +msgid "Link:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:16 +msgid "Repeat Type:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:19 +msgid "weekly" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:20 +msgid "every 2 weeks" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:21 +msgid "every 3 weeks" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:22 +msgid "every 4 weeks" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:23 +msgid "monthly" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:32 +msgid "Select Days:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:47 +msgid "Repeat By:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:50 +msgid "day of the month" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:50 +msgid "day of the week" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:56 +#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowBuilder.php:46 +msgid "Date End:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:69 +msgid "No End?" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:106 +msgid "End date must be after start date" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:113 +msgid "Please select a repeat day" +msgstr "" + +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" +msgstr "" + +#: airtime_mvc/application/forms/PasswordChange.php:17 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:120 +#: airtime_mvc/application/forms/EmailServerPreferences.php:82 +#: airtime_mvc/application/forms/EmailServerPreferences.php:81 +msgid "Password" +msgstr "" + +#: airtime_mvc/application/forms/PasswordChange.php:28 +msgid "Confirm new password" +msgstr "" + +#: airtime_mvc/application/forms/PasswordChange.php:36 +msgid "Password confirmation does not match your password." +msgstr "" + +#: airtime_mvc/application/forms/PasswordChange.php:43 +msgid "Get new password" +msgstr "" + +#: airtime_mvc/application/forms/SupportSettings.php:21 +#: airtime_mvc/application/forms/GeneralPreferences.php:21 +#: airtime_mvc/application/forms/RegisterAirtime.php:30 +#: airtime_mvc/application/forms/GeneralPreferences.php:20 +#: airtime_mvc/application/forms/SupportSettings.php:20 +msgid "Station Name" +msgstr "" + +#: airtime_mvc/application/forms/SupportSettings.php:34 +#: airtime_mvc/application/forms/RegisterAirtime.php:39 +#: airtime_mvc/application/forms/SupportSettings.php:33 +msgid "Phone:" +msgstr "" + +#: airtime_mvc/application/forms/SupportSettings.php:57 +#: airtime_mvc/application/forms/RegisterAirtime.php:62 +#: airtime_mvc/application/forms/SupportSettings.php:56 +msgid "Station Web Site:" +msgstr "" + +#: airtime_mvc/application/forms/SupportSettings.php:68 +#: airtime_mvc/application/forms/RegisterAirtime.php:73 +#: airtime_mvc/application/forms/BillingClient.php:102 +#: airtime_mvc/application/forms/SupportSettings.php:67 +msgid "Country:" +msgstr "" + +#: airtime_mvc/application/forms/SupportSettings.php:79 +#: airtime_mvc/application/forms/RegisterAirtime.php:84 +#: airtime_mvc/application/forms/BillingClient.php:70 +#: airtime_mvc/application/forms/SupportSettings.php:78 +msgid "City:" +msgstr "" + +#: airtime_mvc/application/forms/SupportSettings.php:91 +#: airtime_mvc/application/forms/RegisterAirtime.php:96 +#: airtime_mvc/application/forms/SupportSettings.php:90 +msgid "Station Description:" +msgstr "" + +#: airtime_mvc/application/forms/SupportSettings.php:101 +#: airtime_mvc/application/forms/RegisterAirtime.php:106 +#: airtime_mvc/application/forms/SupportSettings.php:100 +msgid "Station Logo:" +msgstr "" + +#: airtime_mvc/application/forms/SupportSettings.php:122 +#: airtime_mvc/application/forms/RegisterAirtime.php:126 +#: airtime_mvc/application/forms/SupportSettings.php:121 +msgid "Promote my station on Sourcefabric.org" +msgstr "" + +#: airtime_mvc/application/forms/SupportSettings.php:148 +#: airtime_mvc/application/forms/RegisterAirtime.php:149 +#: airtime_mvc/application/forms/SupportSettings.php:133 +#, php-format +msgid "By checking this box, I agree to Sourcefabric's %sprivacy policy%s." +msgstr "" + +#: airtime_mvc/application/forms/SupportSettings.php:171 +#: airtime_mvc/application/forms/RegisterAirtime.php:166 +#: airtime_mvc/application/forms/SupportSettings.php:155 +msgid "You have to agree to privacy policy." +msgstr "" + +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 +msgid "" +"'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "" + +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "" + +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" +msgstr "" + +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" +msgstr "" + +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "" + +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:48 +msgid "Enabled:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:57 +msgid "Stream Type:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:77 +msgid "Service Type:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:87 +msgid "Channels:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:88 +msgid "1 - Mono" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:88 +msgid "2 - Stereo" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:97 +msgid "Server" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:109 +#: airtime_mvc/application/forms/EmailServerPreferences.php:100 +#: airtime_mvc/application/forms/EmailServerPreferences.php:99 +msgid "Port" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:141 +msgid "URL" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:171 +msgid "Mount Point" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:195 +msgid "Admin User" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:207 +msgid "Admin Password" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:232 +msgid "Server cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:237 +msgid "Port cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:243 +msgid "Mount cannot be empty with Icecast server." +msgstr "" + +#: airtime_mvc/application/forms/StreamSetting.php:22 +msgid "Hardware Audio Output" +msgstr "" + +#: airtime_mvc/application/forms/StreamSetting.php:33 +msgid "Output Type" +msgstr "" + +#: airtime_mvc/application/forms/StreamSetting.php:44 +#: airtime_mvc/application/forms/StreamSetting.php:22 +msgid "Icecast Vorbis Metadata" +msgstr "" + +#: airtime_mvc/application/forms/StreamSetting.php:54 +#: airtime_mvc/application/forms/StreamSetting.php:32 +msgid "Stream Label:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSetting.php:55 +#: airtime_mvc/application/forms/StreamSetting.php:33 +msgid "Artist - Title" +msgstr "" + +#: airtime_mvc/application/forms/StreamSetting.php:56 +#: airtime_mvc/application/forms/StreamSetting.php:34 +msgid "Show - Artist - Title" +msgstr "" + +#: airtime_mvc/application/forms/StreamSetting.php:57 +#: airtime_mvc/application/forms/StreamSetting.php:35 +msgid "Station name - Show name" +msgstr "" + +#: airtime_mvc/application/forms/StreamSetting.php:63 +#: airtime_mvc/application/forms/StreamSetting.php:41 +msgid "Off Air Metadata" +msgstr "" + +#: airtime_mvc/application/forms/StreamSetting.php:69 +#: airtime_mvc/application/forms/StreamSetting.php:47 +msgid "Enable Replay Gain" +msgstr "" + +#: airtime_mvc/application/forms/StreamSetting.php:75 +#: airtime_mvc/application/forms/StreamSetting.php:53 +msgid "Replay Gain Modifier" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" +msgstr "" + +#: airtime_mvc/application/forms/EmailServerPreferences.php:17 +#: airtime_mvc/application/forms/EmailServerPreferences.php:16 +msgid "Enable System Emails (Password Reset)" +msgstr "" + +#: airtime_mvc/application/forms/EmailServerPreferences.php:27 +#: airtime_mvc/application/forms/EmailServerPreferences.php:26 +msgid "Reset Password 'From' Email" +msgstr "" + +#: airtime_mvc/application/forms/EmailServerPreferences.php:34 +#: airtime_mvc/application/forms/EmailServerPreferences.php:33 +msgid "Configure Mail Server" +msgstr "" + +#: airtime_mvc/application/forms/EmailServerPreferences.php:43 +#: airtime_mvc/application/forms/EmailServerPreferences.php:42 +msgid "Requires Authentication" +msgstr "" + +#: airtime_mvc/application/forms/EmailServerPreferences.php:53 +#: airtime_mvc/application/forms/EmailServerPreferences.php:52 +msgid "Mail Server" +msgstr "" + +#: airtime_mvc/application/forms/EmailServerPreferences.php:67 +#: airtime_mvc/application/forms/EmailServerPreferences.php:66 +msgid "Email Address" +msgstr "" + +#: airtime_mvc/application/forms/Login.php:83 +msgid "Type the characters you see in the picture below." +msgstr "" + +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 +msgid "Day must be specified" +msgstr "" + +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 +msgid "Time must be specified" +msgstr "" + +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:10 +msgid "Use Airtime Authentication:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:16 +msgid "Use Custom Authentication:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:39 +msgid "Custom Password" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:63 +msgid "Username field cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:68 +msgid "Password field cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/ShowBuilder.php:18 +msgid "Date Start:" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:33 +#: airtime_mvc/application/forms/GeneralPreferences.php:32 +msgid "Default Crossfade Duration (s):" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:40 +#: airtime_mvc/application/forms/GeneralPreferences.php:59 +#: airtime_mvc/application/forms/GeneralPreferences.php:78 +#: airtime_mvc/application/forms/GeneralPreferences.php:39 +#: airtime_mvc/application/forms/GeneralPreferences.php:58 +#: airtime_mvc/application/forms/GeneralPreferences.php:77 +msgid "enter a time in seconds 0{.0}" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:52 +#: airtime_mvc/application/forms/GeneralPreferences.php:51 +msgid "Default Fade In (s):" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:71 +#: airtime_mvc/application/forms/GeneralPreferences.php:70 +msgid "Default Fade Out (s):" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:89 +#: airtime_mvc/application/forms/GeneralPreferences.php:88 +#, php-format +msgid "" +"Allow Remote Websites To Access \"Schedule\" Info?%s (Enable this to make " +"front-end widgets work.)" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:90 +#: airtime_mvc/application/forms/GeneralPreferences.php:89 +msgid "Disabled" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:91 +#: airtime_mvc/application/forms/GeneralPreferences.php:90 +msgid "Enabled" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:97 +#: airtime_mvc/application/forms/GeneralPreferences.php:110 +msgid "Default Interface Language" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:105 +#: airtime_mvc/application/forms/GeneralPreferences.php:118 +msgid "Station Timezone" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:113 +#: airtime_mvc/application/forms/GeneralPreferences.php:126 +msgid "Week Starts On" +msgstr "" + +#: airtime_mvc/application/forms/EditUser.php:121 +msgid "Interface Timezone:" +msgstr "" + +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "E-mail" +msgstr "" + +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Restore password" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:118 +msgid "hours" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:119 +msgid "minutes" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "Set smart block type:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:170 +msgid "Static" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:171 +msgid "Dynamic" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:285 +msgid "Allow Repeat Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:302 +msgid "Limit to" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:324 +msgid "Generate playlist content and save criteria" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 +msgid "Generate" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:332 +msgid "Shuffle playlist content" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:500 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:512 +msgid "Limit cannot be empty or smaller than 0" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:505 +msgid "Limit cannot be more than 24 hrs" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:515 +msgid "The value should be an integer" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:518 +msgid "500 is the max item limit value you can set" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 +msgid "You must select Criteria and Modifier" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:536 +msgid "'Length' should be in '00:00:00' format" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:554 +msgid "" +"The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 " +"00:00:00)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:568 +msgid "The value has to be numeric" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:573 +msgid "The value should be less then 2147483648" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +#, php-format +msgid "The value should be less than %s characters" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:585 +msgid "Value cannot be empty" +msgstr "" + +#: airtime_mvc/application/forms/ShowBuilder.php:72 +msgid "Show:" +msgstr "" + +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" +msgstr "" + +#: airtime_mvc/application/forms/EditAudioMD.php:112 +#: airtime_mvc/application/forms/EditAudioMD.php:151 +msgid "ISRC Number:" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:16 +msgid "Automatically Upload Recorded Shows" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:26 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:16 +msgid "Enable SoundCloud Upload" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:36 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:26 +msgid "Automatically Mark Files \"Downloadable\" on SoundCloud" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:47 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:37 +msgid "SoundCloud Email" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:67 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:57 +msgid "SoundCloud Password" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:87 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:77 +msgid "SoundCloud Tags: (separate tags with spaces)" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:99 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:89 +msgid "Default Genre:" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:109 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:99 +msgid "Default Track Type:" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:113 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:103 +msgid "Original" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:114 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:104 +msgid "Remix" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:115 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:105 +msgid "Live" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:116 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:106 +msgid "Recording" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:117 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:107 +msgid "Spoken" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:118 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:108 +msgid "Podcast" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:119 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:109 +msgid "Demo" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:120 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:110 +msgid "Work in progress" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:121 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:111 +msgid "Stem" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:122 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:112 +msgid "Loop" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:123 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:113 +msgid "Sound Effect" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:124 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:114 +msgid "One Shot Sample" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:125 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:115 +msgid "Other" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:133 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:123 +msgid "Default License:" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:137 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:127 +msgid "The work is in the public domain" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:138 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:128 +msgid "All rights are reserved" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:139 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:129 +msgid "Creative Commons Attribution" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:140 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:130 +msgid "Creative Commons Attribution Noncommercial" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:141 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:131 +msgid "Creative Commons Attribution No Derivative Works" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:142 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:132 +msgid "Creative Commons Attribution Share Alike" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:143 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:133 +msgid "Creative Commons Attribution Noncommercial Non Derivate Works" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:144 +#: airtime_mvc/application/forms/SoundcloudPreferences.php:134 +msgid "Creative Commons Attribution Noncommercial Share Alike" +msgstr "" + +#: airtime_mvc/application/forms/AddShowStyle.php:10 +msgid "Background Colour:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowStyle.php:29 +msgid "Text Colour:" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:12 +msgid "Now Playing" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:19 +msgid "Add Media" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:26 +msgid "Library" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:33 +msgid "Calendar" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:40 +msgid "System" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:50 +msgid "Users" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:57 +msgid "Media Folders" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:64 +msgid "Streams" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:83 +msgid "Listener Stats" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:92 +msgid "History" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:97 +msgid "Playout History" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:104 +msgid "History Templates" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:118 +msgid "Getting Started" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:125 +msgid "User Manual" +msgstr "" + +#: airtime_mvc/library/propel/contrib/pear/HTML_QuickForm_Propel/Propel.php:512 +msgid "Please selection an option" +msgstr "" + +#: airtime_mvc/library/propel/contrib/pear/HTML_QuickForm_Propel/Propel.php:531 +msgid "No Records" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/login.phtml:16 +#, php-format +msgid "" +"Airtime copyright © Sourcefabric z.ú. All rights reserved.%sMaintained " +"and distributed under the GNU GPL v.3 by %sSourcefabric z.ú.%s" +msgstr "" + +#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:15 +msgid "Plan type:" +msgstr "" + +#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:27 +msgid "Billing cycle:" +msgstr "" + +#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:35 +msgid "Payment method:" +msgstr "" + +#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:38 +msgid "PayPal" +msgstr "" + +#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:39 +msgid "Credit Card via 2Checkout" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:17 +msgid "First Name:" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:26 +msgid "Last Name:" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:35 +msgid "Company Name:" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:44 +msgid "Email Address:" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:54 +msgid "Address 1:" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:63 +msgid "Address 2:" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:80 +msgid "State/Region:" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:89 +msgid "Zip Code / Postal Code:" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:112 +msgid "Phone Number:" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:121 +msgid "Please choose a security question:" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:126 +msgid "What is the name of your favorite childhood friend?" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:127 +msgid "What school did you attend for sixth grade?" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:128 +msgid "In what city did you meet your spouse/significant other?" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:129 +msgid "What street did you live on in third grade?" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:130 +msgid "What is the first name of the boy or girl that you first kissed?" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:131 +msgid "In what city or town was your first job?" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:135 +msgid "Please enter an answer:" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:152 +msgid "VAT/Tax ID (EU only)" +msgstr "" + +#: airtime_mvc/application/forms/BillingClient.php:162 +msgid "Subscribe to Sourcefabric newsletter" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:139 +msgid "Billing" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:144 +msgid "Account Details" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:151 +#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171 +msgid "Account Plans" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:158 +msgid "View Invoices" +msgstr "" + +#: airtime_mvc/application/views/scripts/plupload/index.phtml:26 +msgid "Failed" +msgstr "" + +#: airtime_mvc/application/views/scripts/plupload/index.phtml:27 +msgid "Pending" +msgstr "" + +#: airtime_mvc/application/views/scripts/plupload/index.phtml:30 +msgid "Recent Uploads" +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/about.phtml:13 +#, php-format +msgid "%sSourcefabric%s z.ú Airtime is distributed under the %sGNU GPL v.3%s" +msgstr "" + +#: airtime_mvc/application/views/scripts/login/index.phtml:7 +msgid "" +"Welcome to the Airtime demo! You can log in using the username 'admin' and " +"the password 'admin'." +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9 +msgid "Purchase an Airtime Pro plan!" +msgstr "" + +#: airtime_mvc/application/views/scripts/billing/invoices.phtml:6 +msgid "" +"Thank you! Your plan has been updated and you will be invoiced during" +" your next billing cycle." +msgstr "" + +#: airtime_mvc/application/views/scripts/billing/invoices.phtml:10 +msgid "" +"Tip: To pay an invoice, click \"View Invoice\"
and look for the " +"\"Checkout\" button." +msgstr "" + +#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172 +msgid "Upgrade today to get more listeners and storage space!" +msgstr "" + +#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:254 +msgid "View Plans" +msgstr "" + +#: airtime_mvc/application/views/scripts/user/add-user.phtml:30 +#, php-format +msgid "" +"Super Admin details can be changed in your Billing " +"Settings." +msgstr "" + +#: airtime_mvc/application/models/Scheduler.php:195 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "" diff --git a/airtime_mvc/locale/ka/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/ka/LC_MESSAGES/airtime.mo index 6bb24bf3a16258f6c7c55c7e03ad954e4530d6b2..05594a34927f169654176441457cc016edafac64 100644 GIT binary patch delta 12 Tcmcb>e1Unw21fIZ8|4`RA*TeP delta 12 Tcmcb>e1Unw21e738|4`RA)N%D diff --git a/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po index 91d6477600..131dd87069 100644 --- a/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-02-05 10:31+0000\n" +"PO-Revision-Date: 2015-02-07 10:31+0000\n" "Last-Translator: Daniel James \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/airtime/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.mo index 7d9709a5617904f05223be058d0b892d8d06cae2..3c7a77d672f7188077bdd37fe32387429ae0bb52 100644 GIT binary patch delta 16 XcmeA>!rXU+d4qQcqxoi^jzf_EJXHq> delta 16 XcmeA>!rXU+d4qQcqv>X!jzf_EJV^%z diff --git a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po index 6bc0006023..79daee1e01 100644 --- a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-02-05 10:31+0000\n" +"PO-Revision-Date: 2015-02-07 10:31+0000\n" "Last-Translator: Felipe Thomaz Pedroni\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/airtime/language/pt_BR/)\n" "MIME-Version: 1.0\n" From 8a88b4b7336e21956ff11e403eaee72d04efa794 Mon Sep 17 00:00:00 2001 From: Albert Santoni Date: Tue, 24 Feb 2015 12:03:35 -0500 Subject: [PATCH 14/35] Reduce the pypo POLL_INTERVAL to lessen impact of RabbitMQ or web server outages --- python_apps/pypo/pypofetch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_apps/pypo/pypofetch.py b/python_apps/pypo/pypofetch.py index d7c79b581e..5564825a3f 100644 --- a/python_apps/pypo/pypofetch.py +++ b/python_apps/pypo/pypofetch.py @@ -37,7 +37,7 @@ def keyboardInterruptHandler(signum, frame): #need to wait for Python 2.7 for this.. #logging.captureWarnings(True) -POLL_INTERVAL = 1800 +POLL_INTERVAL = 480 class PypoFetch(Thread): From 5e256df0619328b074230f2d0dbbdb31f19a5ec7 Mon Sep 17 00:00:00 2001 From: Duncan Sommerville Date: Tue, 24 Feb 2015 12:12:30 -0500 Subject: [PATCH 15/35] Added remove button for station logo on preferences page --- .../application/controllers/PreferenceController.php | 9 +++++++++ airtime_mvc/application/models/Preference.php | 11 +++++------ .../views/scripts/form/preferences_general.phtml | 6 +++++- airtime_mvc/public/css/styles.css | 8 ++++++++ .../public/js/airtime/preferences/preferences.js | 4 ++++ 5 files changed, 31 insertions(+), 7 deletions(-) diff --git a/airtime_mvc/application/controllers/PreferenceController.php b/airtime_mvc/application/controllers/PreferenceController.php index 767fd3b621..09188b93db 100644 --- a/airtime_mvc/application/controllers/PreferenceController.php +++ b/airtime_mvc/application/controllers/PreferenceController.php @@ -146,6 +146,15 @@ public function directoryConfigAction() $this->view->form = $watched_dirs_pref; } + public function removeLogoAction() + { + $this->view->layout()->disableLayout(); + // Remove reliance on .phtml files to render requests + $this->_helper->viewRenderer->setNoRender(true); + + Application_Model_Preference::SetStationLogo(""); + } + public function streamSettingAction() { $CC_CONFIG = Config::getConfig(); diff --git a/airtime_mvc/application/models/Preference.php b/airtime_mvc/application/models/Preference.php index e568e01595..1ba71e7825 100644 --- a/airtime_mvc/application/models/Preference.php +++ b/airtime_mvc/application/models/Preference.php @@ -589,13 +589,12 @@ public static function GetLocale() public static function SetStationLogo($imagePath) { - if (!empty($imagePath)) { - $image = @file_get_contents($imagePath); - $image = base64_encode($image); - self::setValue("logoImage", $image); - } else { - Logging::warn("Attempting to set imagePath to empty string"); + if (empty($imagePath)) { + Logging::info("Removed station logo"); } + $image = @file_get_contents($imagePath); + $image = base64_encode($image); + self::setValue("logoImage", $image); } public static function GetStationLogo() diff --git a/airtime_mvc/application/views/scripts/form/preferences_general.phtml b/airtime_mvc/application/views/scripts/form/preferences_general.phtml index 7bf5d487d2..99cb4384cc 100644 --- a/airtime_mvc/application/views/scripts/form/preferences_general.phtml +++ b/airtime_mvc/application/views/scripts/form/preferences_general.phtml @@ -7,7 +7,11 @@ element->getElement('stationLogo')->render() ?> -
+ + +
+ +
element->getElement('locale')->render() ?> diff --git a/airtime_mvc/public/css/styles.css b/airtime_mvc/public/css/styles.css index 64f6b25691..05987d876a 100644 --- a/airtime_mvc/public/css/styles.css +++ b/airtime_mvc/public/css/styles.css @@ -2187,6 +2187,14 @@ dd.radio-inline-list, .preferences dd.radio-inline-list, .stream-config dd.radio height: 120px; } +.preferences #logo-remove-btn { + float: right; +} + +.preferences #Logo-img-container { + float: left; +} + #show_time_info { font-size:12px; height:30px; diff --git a/airtime_mvc/public/js/airtime/preferences/preferences.js b/airtime_mvc/public/js/airtime/preferences/preferences.js index 4f37d70339..f7875ec7b0 100644 --- a/airtime_mvc/public/js/airtime/preferences/preferences.js +++ b/airtime_mvc/public/js/airtime/preferences/preferences.js @@ -104,6 +104,10 @@ $(document).ready(function() { return false; }).next().hide(); + $('#logo-remove-btn').click(function() { + $.post(baseUrl+'Preference/remove-logo', function(json){}); + }); + /* No longer using AJAX for this form. Zend + our code makes it needlessly hard to deal with. -- Albert $('#pref_save').live('click', function() { var data = $('#pref_form').serialize(); From 78c7170c4e629a887799b116fdf9cbe41abc3ea3 Mon Sep 17 00:00:00 2001 From: Duncan Sommerville Date: Fri, 27 Feb 2015 17:19:37 -0500 Subject: [PATCH 16/35] Reformatted logo remove button to use Zend --- airtime_mvc/application/forms/GeneralPreferences.php | 7 +++++++ .../views/scripts/form/preferences_general.phtml | 6 ++++-- airtime_mvc/public/css/styles.css | 7 ++++++- airtime_mvc/public/js/airtime/preferences/preferences.js | 9 +++++---- 4 files changed, 22 insertions(+), 7 deletions(-) diff --git a/airtime_mvc/application/forms/GeneralPreferences.php b/airtime_mvc/application/forms/GeneralPreferences.php index 52f14332a4..aa2906d826 100644 --- a/airtime_mvc/application/forms/GeneralPreferences.php +++ b/airtime_mvc/application/forms/GeneralPreferences.php @@ -49,6 +49,13 @@ public function init() $stationLogoUpload->setAttrib('accept', 'image/*'); $this->addElement($stationLogoUpload); + $stationLogoRemove = new Zend_Form_Element_Button('stationLogoRemove'); + $stationLogoRemove->setLabel(_('Remove')); + $stationLogoRemove->setAttrib('class', 'btn'); + $stationLogoRemove->setAttrib('id', 'logo-remove-btn'); + $stationLogoRemove->setAttrib('onclick', 'removeLogo();'); + $this->addElement($stationLogoRemove); + //Default station crossfade duration $this->addElement('text', 'stationDefaultCrossfadeDuration', array( 'class' => 'input_text', diff --git a/airtime_mvc/application/views/scripts/form/preferences_general.phtml b/airtime_mvc/application/views/scripts/form/preferences_general.phtml index 99cb4384cc..85e9a9b7ee 100644 --- a/airtime_mvc/application/views/scripts/form/preferences_general.phtml +++ b/airtime_mvc/application/views/scripts/form/preferences_general.phtml @@ -7,10 +7,12 @@ element->getElement('stationLogo')->render() ?> - + element->getElement('stationLogoRemove')->render() ?> + +
- +
element->getElement('locale')->render() ?> diff --git a/airtime_mvc/public/css/styles.css b/airtime_mvc/public/css/styles.css index 05987d876a..44e0db75b0 100644 --- a/airtime_mvc/public/css/styles.css +++ b/airtime_mvc/public/css/styles.css @@ -2187,12 +2187,17 @@ dd.radio-inline-list, .preferences dd.radio-inline-list, .stream-config dd.radio height: 120px; } +.preferences #stationLogoRemove-label { + display: none; +} + .preferences #logo-remove-btn { float: right; + margin-bottom: 4px; } .preferences #Logo-img-container { - float: left; + margin-top: 30px; } #show_time_info { diff --git a/airtime_mvc/public/js/airtime/preferences/preferences.js b/airtime_mvc/public/js/airtime/preferences/preferences.js index f7875ec7b0..faef03218f 100644 --- a/airtime_mvc/public/js/airtime/preferences/preferences.js +++ b/airtime_mvc/public/js/airtime/preferences/preferences.js @@ -96,6 +96,11 @@ function setSoundCloudCheckBoxListener() { }); } +function removeLogo() { + $.post(baseUrl+'Preference/remove-logo', function(json){}); + location.reload(); +} + $(document).ready(function() { $('.collapsible-header').live('click',function() { @@ -104,10 +109,6 @@ $(document).ready(function() { return false; }).next().hide(); - $('#logo-remove-btn').click(function() { - $.post(baseUrl+'Preference/remove-logo', function(json){}); - }); - /* No longer using AJAX for this form. Zend + our code makes it needlessly hard to deal with. -- Albert $('#pref_save').live('click', function() { var data = $('#pref_form').serialize(); From 13bd0b758934d4fe229fde33560b459d5cdcd424 Mon Sep 17 00:00:00 2001 From: Duncan Sommerville Date: Mon, 2 Mar 2015 14:57:50 -0500 Subject: [PATCH 17/35] Fixed removing image when saving preferences with no upload --- .../application/controllers/PreferenceController.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/airtime_mvc/application/controllers/PreferenceController.php b/airtime_mvc/application/controllers/PreferenceController.php index 09188b93db..7d23a958ee 100644 --- a/airtime_mvc/application/controllers/PreferenceController.php +++ b/airtime_mvc/application/controllers/PreferenceController.php @@ -51,7 +51,11 @@ public function indexAction() $logoUploadElement = $form->getSubForm('preferences_general')->getElement('stationLogo'); $logoUploadElement->receive(); $imagePath = $logoUploadElement->getFileName(); - Application_Model_Preference::SetStationLogo($imagePath); + + // Only update the image logo if the new logo is non-empty + if (!is_null($imagePath) && $imagePath != "") { + Application_Model_Preference::SetStationLogo($imagePath); + } Application_Model_Preference::SetEnableSystemEmail($values["enableSystemEmail"]); Application_Model_Preference::SetSystemEmail($values["systemEmail"]); From b6a6f038a96711ef09799b31284177c268566e9a Mon Sep 17 00:00:00 2001 From: Duncan Sommerville Date: Mon, 2 Mar 2015 15:10:04 -0500 Subject: [PATCH 18/35] Added call to setStationDescription in preferences action --- airtime_mvc/application/controllers/PreferenceController.php | 1 + 1 file changed, 1 insertion(+) diff --git a/airtime_mvc/application/controllers/PreferenceController.php b/airtime_mvc/application/controllers/PreferenceController.php index 7d23a958ee..0e13eb3ec3 100644 --- a/airtime_mvc/application/controllers/PreferenceController.php +++ b/airtime_mvc/application/controllers/PreferenceController.php @@ -40,6 +40,7 @@ public function indexAction() if ($form->isValid($values)) { Application_Model_Preference::SetHeadTitle($values["stationName"], $this->view); + Application_Model_Preference::SetStationDescription($values["stationDescription"]); Application_Model_Preference::SetDefaultCrossfadeDuration($values["stationDefaultCrossfadeDuration"]); Application_Model_Preference::SetDefaultFadeIn($values["stationDefaultFadeIn"]); Application_Model_Preference::SetDefaultFadeOut($values["stationDefaultFadeOut"]); From c8ccd380751370ce04e91dc708de4cd4d4119617 Mon Sep 17 00:00:00 2001 From: localizer Date: Thu, 5 Mar 2015 10:03:16 +0000 Subject: [PATCH 19/35] updated translation resources --- airtime_mvc/locale/az/LC_MESSAGES/airtime.mo | Bin 474 -> 474 bytes airtime_mvc/locale/az/LC_MESSAGES/airtime.po | 2 +- .../locale/de_AT/LC_MESSAGES/airtime.mo | Bin 63465 -> 63465 bytes .../locale/de_AT/LC_MESSAGES/airtime.po | 2 +- .../locale/en_GB/LC_MESSAGES/airtime.mo | Bin 61416 -> 61416 bytes .../locale/en_GB/LC_MESSAGES/airtime.po | 2 +- .../locale/hy_AM/LC_MESSAGES/airtime.mo | Bin 487 -> 487 bytes .../locale/hy_AM/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/ka/LC_MESSAGES/airtime.mo | Bin 464 -> 464 bytes airtime_mvc/locale/ka/LC_MESSAGES/airtime.po | 2 +- .../locale/pt_BR/LC_MESSAGES/airtime.mo | Bin 57870 -> 57870 bytes .../locale/pt_BR/LC_MESSAGES/airtime.po | 2 +- 12 files changed, 6 insertions(+), 6 deletions(-) diff --git a/airtime_mvc/locale/az/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/az/LC_MESSAGES/airtime.mo index 86c47eebc4e10ea9d8209f3249c995fa6ba21cbc..bad17b28578a6330dc8f36b0b18c08474e309a9a 100644 GIT binary patch delta 21 ccmcb`e2aO)S}tQ<15*V<11kfgjoXzO0ZxDhZ~y=R delta 21 ccmcb`e2aO)S}r4919JsK11n?0joXzO0Zx?$a{vGU diff --git a/airtime_mvc/locale/az/LC_MESSAGES/airtime.po b/airtime_mvc/locale/az/LC_MESSAGES/airtime.po index 4ed163e022..876e409133 100644 --- a/airtime_mvc/locale/az/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/az/LC_MESSAGES/airtime.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-02-07 10:31+0000\n" +"PO-Revision-Date: 2015-03-05 10:02+0000\n" "Last-Translator: Daniel James \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/airtime/language/az/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.mo index 2740f9b336077af03bf3ff4fdfd54a4abe063513..85f4170e396f31d75f5f3735d2e96bd9da0c38ee 100644 GIT binary patch delta 25 hcmaF)p84f_<_#Ywa~bOzm?{_=SQ!{?{yq6!G60;>3uyoV delta 25 hcmaF)p84f_<_#Ywa~bIxm@60>SQ#5`{yq6!G60\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/airtime/language/de_AT/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.mo index e2dc780f63135c41643fdf2505381857056631b5..536dce9a17084e4d210cff19ca557b4203f0a360 100644 GIT binary patch delta 25 hcmaEHpZUdo<_-C?xQulTOce|btPG4cSI){01ptmF3B&*Z delta 25 hcmaEHpZUdo<_-C?xQuiS%oPj`tc(peSI){01ptmd3C92c diff --git a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po index 89bc00ece8..a7275899e2 100644 --- a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-02-07 10:31+0000\n" +"PO-Revision-Date: 2015-03-05 10:02+0000\n" "Last-Translator: Daniel James \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/airtime/language/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.mo index 7b753ebc09966a3cb41470ea4e342d94150fc0c1..0c990868d2cfd853da998f24a1c2f6351c0f5798 100644 GIT binary patch delta 21 ccmaFP{G55hS}tQ<15*V<11kfgjoS?v0Z^g_mjD0& delta 21 ccmaFP{G55hS}r4919JsK11n?0joS?v0Z_LFng9R* diff --git a/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po b/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po index fbb0477086..66779204d7 100644 --- a/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-02-07 10:31+0000\n" +"PO-Revision-Date: 2015-03-05 10:02+0000\n" "Last-Translator: Daniel James \n" "Language-Team: Armenian (Armenia) (http://www.transifex.com/projects/p/airtime/language/hy_AM/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/ka/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/ka/LC_MESSAGES/airtime.mo index 05594a34927f169654176441457cc016edafac64..22c37c18b25cffc691a5898a8641f3ae9a7f4c9b 100644 GIT binary patch delta 21 ccmcb>e1UnwS}tQ<15*V<11kfgjoT#|0ZiNmQUCw| delta 21 ccmcb>e1UnwS}r4919JsK11n?0joT#|0Zj1*RR910 diff --git a/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po index 131dd87069..90649e09f6 100644 --- a/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-02-07 10:31+0000\n" +"PO-Revision-Date: 2015-03-05 10:02+0000\n" "Last-Translator: Daniel James \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/airtime/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.mo index 3c7a77d672f7188077bdd37fe32387429ae0bb52..fbc8ad013536b5d8719e9bcfa2f9ac9da9744006 100644 GIT binary patch delta 25 gcmeA>!rXU+d4op>m$9yase++_m4VUbppHF}0Cc?wxc~qF delta 25 gcmeA>!rXU+d4op>myxc4xq_jAm9gRGppHF}0Cd#|yZ`_I diff --git a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po index 79daee1e01..ee4a29d1eb 100644 --- a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-02-07 10:31+0000\n" +"PO-Revision-Date: 2015-03-05 10:02+0000\n" "Last-Translator: Felipe Thomaz Pedroni\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/airtime/language/pt_BR/)\n" "MIME-Version: 1.0\n" From 90b03a06a21a93bb668ca198cc8ddec31f43dfdf Mon Sep 17 00:00:00 2001 From: localizer Date: Mon, 13 Apr 2015 19:12:15 +0000 Subject: [PATCH 20/35] updated translation resources --- airtime_mvc/locale/az/LC_MESSAGES/airtime.mo | Bin 474 -> 474 bytes airtime_mvc/locale/az/LC_MESSAGES/airtime.po | 2 +- .../locale/de_AT/LC_MESSAGES/airtime.mo | Bin 63465 -> 63465 bytes .../locale/de_AT/LC_MESSAGES/airtime.po | 2 +- .../locale/en_GB/LC_MESSAGES/airtime.mo | Bin 61416 -> 61416 bytes .../locale/en_GB/LC_MESSAGES/airtime.po | 2 +- .../locale/hy_AM/LC_MESSAGES/airtime.mo | Bin 487 -> 487 bytes .../locale/hy_AM/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/ka/LC_MESSAGES/airtime.mo | Bin 464 -> 464 bytes airtime_mvc/locale/ka/LC_MESSAGES/airtime.po | 2 +- .../locale/nl_NL/LC_MESSAGES/airtime.mo | Bin 488 -> 493 bytes .../locale/nl_NL/LC_MESSAGES/airtime.po | 6 ++++-- .../locale/pt_BR/LC_MESSAGES/airtime.mo | Bin 57870 -> 57870 bytes .../locale/pt_BR/LC_MESSAGES/airtime.po | 2 +- 14 files changed, 10 insertions(+), 8 deletions(-) diff --git a/airtime_mvc/locale/az/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/az/LC_MESSAGES/airtime.mo index bad17b28578a6330dc8f36b0b18c08474e309a9a..838bec92ce22ad25cbe4f1642845bef19d7daef1 100644 GIT binary patch delta 13 Ucmcb`e2aO)Rwfg}joXzO0Vd)E^8f$< delta 13 Ucmcb`e2aO)Rwe_ZjoXzO0VdA`@Bjb+ diff --git a/airtime_mvc/locale/az/LC_MESSAGES/airtime.po b/airtime_mvc/locale/az/LC_MESSAGES/airtime.po index 876e409133..ec9ac97dc6 100644 --- a/airtime_mvc/locale/az/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/az/LC_MESSAGES/airtime.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-03-05 10:02+0000\n" +"PO-Revision-Date: 2015-03-05 10:41+0000\n" "Last-Translator: Daniel James \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/airtime/language/az/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.mo index 85f4170e396f31d75f5f3735d2e96bd9da0c38ee..332ac8e7160d19e8d7f00dc5905f05b4f4660b24 100644 GIT binary patch delta 17 ZcmaF)p84f_<_$k5Gnp7}{yq6!G5}mA3G4s> delta 17 ZcmaF)p84f_<_$k5GZ`3d{yq6!G5}l<3F!a; diff --git a/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po b/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po index caa3d796b2..3730648ad3 100644 --- a/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-03-05 10:02+0000\n" +"PO-Revision-Date: 2015-03-05 10:41+0000\n" "Last-Translator: Daniel James \n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/airtime/language/de_AT/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.mo index 536dce9a17084e4d210cff19ca557b4203f0a360..9be2d543a3f6170b01ddfbfd36adea2c10c03a3c 100644 GIT binary patch delta 17 ZcmaEHpZUdo<_+bum`n^eSI){01prcG2uA<_ delta 17 ZcmaEHpZUdo<_+bum<)_ISI){01prb_2t)t? diff --git a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po index a7275899e2..f8931c114a 100644 --- a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-03-05 10:02+0000\n" +"PO-Revision-Date: 2015-03-05 10:41+0000\n" "Last-Translator: Daniel James \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/airtime/language/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.mo index 0c990868d2cfd853da998f24a1c2f6351c0f5798..ee265c8042334eeb70ffa4a5fd61c51d7f484f74 100644 GIT binary patch delta 13 UcmaFP{G55hRwfg}joS?v0Vp&D8UO$Q delta 13 UcmaFP{G55hRwe_ZjoS?v0Vp8_7XSbN diff --git a/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po b/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po index 66779204d7..5ec731b02a 100644 --- a/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-03-05 10:02+0000\n" +"PO-Revision-Date: 2015-03-05 10:41+0000\n" "Last-Translator: Daniel James \n" "Language-Team: Armenian (Armenia) (http://www.transifex.com/projects/p/airtime/language/hy_AM/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/ka/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/ka/LC_MESSAGES/airtime.mo index 22c37c18b25cffc691a5898a8641f3ae9a7f4c9b..10c20223a8208634a80182c6159f4a55ed585445 100644 GIT binary patch delta 13 Ucmcb>e1UnwRwfg}joT#|0VUo9)c^nh delta 13 Ucmcb>e1UnwRwe_ZjoT#|0VT@>(f|Me diff --git a/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po index 90649e09f6..afd6cf1eee 100644 --- a/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-03-05 10:02+0000\n" +"PO-Revision-Date: 2015-03-05 10:41+0000\n" "Last-Translator: Daniel James \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/airtime/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.mo index 07a557786a931f595dc4cab9c4ed460d465c3683..2e9adf35401a28001b3ae07c2bab8aea74f36612 100644 GIT binary patch delta 85 zcmaFC{FZrw3ghO9s;zFOx&|h?hQ, 2015 +# terwey , 2014 # terwey , 2014 msgid "" msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2014-11-14 09:58+0000\n" -"Last-Translator: Daniel James \n" +"PO-Revision-Date: 2015-04-13 11:59+0000\n" +"Last-Translator: dave van den berg \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/airtime/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.mo index fbc8ad013536b5d8719e9bcfa2f9ac9da9744006..8e128f5e2bdcbf32cb7e820c4f39a2e0ba7d87bd 100644 GIT binary patch delta 17 YcmeA>!rXU+c|$-4lZoNxppHF}074Q6JOBUy delta 17 YcmeA>!rXU+c|$-4lY!CZppHF}073i*IRF3v diff --git a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po index ee4a29d1eb..5d5351e9d7 100644 --- a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-03-05 10:02+0000\n" +"PO-Revision-Date: 2015-03-05 10:41+0000\n" "Last-Translator: Felipe Thomaz Pedroni\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/airtime/language/pt_BR/)\n" "MIME-Version: 1.0\n" From 5d3ec4ab13089cd321387559e4230fe6e602015b Mon Sep 17 00:00:00 2001 From: localizer Date: Mon, 13 Apr 2015 19:27:07 +0000 Subject: [PATCH 21/35] updated translation resources --- airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.mo | Bin 493 -> 493 bytes airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.mo index 2e9adf35401a28001b3ae07c2bab8aea74f36612..be425f5e854f8cd5647446fb3bec22cd739216a4 100644 GIT binary patch delta 15 WcmaFM{FZsbW)@2;Bh!uB%@_ePgax4h delta 15 WcmaFM{FZsbW)?#$Q_GFp%@_ePY6YMG diff --git a/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po b/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po index 093753f9bb..feabc76197 100644 --- a/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-04-13 11:59+0000\n" +"PO-Revision-Date: 2015-04-13 19:25+0000\n" "Last-Translator: dave van den berg \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/airtime/language/nl_NL/)\n" "MIME-Version: 1.0\n" From 87b6f0db48043905063c628df3d12fd11dc4d45f Mon Sep 17 00:00:00 2001 From: localizer Date: Mon, 13 Apr 2015 19:40:08 +0000 Subject: [PATCH 22/35] updated translation resources --- .../locale/nl_NL/LC_MESSAGES/airtime.mo | Bin 493 -> 8722 bytes .../locale/nl_NL/LC_MESSAGES/airtime.po | 334 +++++++++--------- 2 files changed, 167 insertions(+), 167 deletions(-) diff --git a/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.mo index be425f5e854f8cd5647446fb3bec22cd739216a4..3fea198d915da83d766c67c31a55f3e4e58cb6df 100644 GIT binary patch literal 8722 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 kG8vg})(|&i F1OQ5|2!8+o diff --git a/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po b/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po index feabc76197..f1adcd0a0f 100644 --- a/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-04-13 19:25+0000\n" +"PO-Revision-Date: 2015-04-13 19:39+0000\n" "Last-Translator: dave van den berg \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/airtime/language/nl_NL/)\n" "MIME-Version: 1.0\n" @@ -23,102 +23,102 @@ msgstr "" #: airtime_mvc/application/layouts/scripts/audio-player.phtml:5 #: airtime_mvc/application/controllers/LocaleController.php:28 msgid "Audio Player" -msgstr "" +msgstr "Audio Player" #: airtime_mvc/application/layouts/scripts/layout.phtml:27 msgid "Logout" -msgstr "" +msgstr "loguit" #: airtime_mvc/application/layouts/scripts/layout.phtml:42 #: airtime_mvc/application/layouts/scripts/layout.phtml:68 msgid "Play" -msgstr "" +msgstr "Play" #: airtime_mvc/application/layouts/scripts/layout.phtml:43 #: airtime_mvc/application/layouts/scripts/layout.phtml:69 msgid "Stop" -msgstr "" +msgstr "Stop" #: airtime_mvc/application/layouts/scripts/layout.phtml:47 #: airtime_mvc/application/forms/SmartBlockCriteria.php:55 #: airtime_mvc/application/controllers/LocaleController.php:270 #: airtime_mvc/application/models/Block.php:1347 msgid "Cue In" -msgstr "" +msgstr "Cue In" #: airtime_mvc/application/layouts/scripts/layout.phtml:49 msgid "Set Cue In" -msgstr "" +msgstr "Set Cue In" #: airtime_mvc/application/layouts/scripts/layout.phtml:54 #: airtime_mvc/application/forms/SmartBlockCriteria.php:56 #: airtime_mvc/application/controllers/LocaleController.php:271 #: airtime_mvc/application/models/Block.php:1348 msgid "Cue Out" -msgstr "" +msgstr "Cue Out" #: airtime_mvc/application/layouts/scripts/layout.phtml:56 msgid "Set Cue Out" -msgstr "" +msgstr "Set Cue Out" #: airtime_mvc/application/layouts/scripts/layout.phtml:73 msgid "Cursor" -msgstr "" +msgstr "Cursor" #: airtime_mvc/application/layouts/scripts/layout.phtml:74 #: airtime_mvc/application/controllers/LocaleController.php:272 msgid "Fade In" -msgstr "" +msgstr "Infaden" #: airtime_mvc/application/layouts/scripts/layout.phtml:75 #: airtime_mvc/application/controllers/LocaleController.php:273 msgid "Fade Out" -msgstr "" +msgstr "uitfaden" #: airtime_mvc/application/layouts/scripts/login.phtml:24 #, php-format msgid "" "%1$s copyright © %2$s All rights reserved.%3$sMaintained and " "distributed under the %4$s by %5$s" -msgstr "" +msgstr "%1$s copyright © %2$s Alle rechten voorbehouden. %3$s Maintained en gedistribueerd onder de %4$s door %5$s" #: airtime_mvc/application/layouts/scripts/livestream.phtml:9 #: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2 msgid "Live stream" -msgstr "" +msgstr "Live stream" #: airtime_mvc/application/forms/StreamSettingSubForm.php:48 msgid "Enabled:" -msgstr "" +msgstr "Ingeschakeld" #: airtime_mvc/application/forms/StreamSettingSubForm.php:57 msgid "Stream Type:" -msgstr "" +msgstr "Stream Type:" #: airtime_mvc/application/forms/StreamSettingSubForm.php:67 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 msgid "Bit Rate:" -msgstr "" +msgstr "Bit Rate:" #: airtime_mvc/application/forms/StreamSettingSubForm.php:77 msgid "Service Type:" -msgstr "" +msgstr "Service Type:" #: airtime_mvc/application/forms/StreamSettingSubForm.php:87 msgid "Channels:" -msgstr "" +msgstr "kanalen:" #: airtime_mvc/application/forms/StreamSettingSubForm.php:88 msgid "1 - Mono" -msgstr "" +msgstr "1- Mono" #: airtime_mvc/application/forms/StreamSettingSubForm.php:88 msgid "2 - Stereo" -msgstr "" +msgstr "2 - Stereo" #: airtime_mvc/application/forms/StreamSettingSubForm.php:97 msgid "Server" -msgstr "" +msgstr "Server" #: airtime_mvc/application/forms/StreamSettingSubForm.php:100 #: airtime_mvc/application/forms/StreamSettingSubForm.php:123 @@ -136,24 +136,24 @@ msgstr "" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:118 #: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 msgid "Invalid character entered" -msgstr "" +msgstr "Ongeldig teken ingevoerd" #: airtime_mvc/application/forms/StreamSettingSubForm.php:109 #: airtime_mvc/application/forms/EmailServerPreferences.php:100 msgid "Port" -msgstr "" +msgstr "poort" #: airtime_mvc/application/forms/StreamSettingSubForm.php:112 #: airtime_mvc/application/forms/LiveStreamingPreferences.php:90 #: airtime_mvc/application/forms/LiveStreamingPreferences.php:109 msgid "Only numbers are allowed." -msgstr "" +msgstr "Alleen cijfers zijn toegestaan." #: airtime_mvc/application/forms/StreamSettingSubForm.php:120 #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/EmailServerPreferences.php:82 msgid "Password" -msgstr "" +msgstr "wachtwoord" #: airtime_mvc/application/forms/StreamSettingSubForm.php:132 #: airtime_mvc/application/forms/SmartBlockCriteria.php:59 @@ -162,137 +162,137 @@ msgstr "" #: airtime_mvc/application/models/Block.php:1351 #: airtime_mvc/application/services/HistoryService.php:1112 msgid "Genre" -msgstr "" +msgstr "Genre" #: airtime_mvc/application/forms/StreamSettingSubForm.php:141 msgid "URL" -msgstr "" +msgstr "URL" #: airtime_mvc/application/forms/StreamSettingSubForm.php:153 #: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 msgid "Name" -msgstr "" +msgstr "naam" #: airtime_mvc/application/forms/StreamSettingSubForm.php:162 #: airtime_mvc/application/views/scripts/webstream/webstream.phtml:41 #: airtime_mvc/application/views/scripts/playlist/playlist.phtml:55 #: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:57 msgid "Description" -msgstr "" +msgstr "Beschrijving" #: airtime_mvc/application/forms/StreamSettingSubForm.php:171 msgid "Mount Point" -msgstr "" +msgstr "Aankoppelpunt" #: airtime_mvc/application/forms/StreamSettingSubForm.php:183 #: airtime_mvc/application/forms/PasswordRestore.php:25 #: airtime_mvc/application/views/scripts/user/add-user.phtml:18 msgid "Username" -msgstr "" +msgstr "gebuikersnaam" #: airtime_mvc/application/forms/StreamSettingSubForm.php:195 msgid "Admin User" -msgstr "" +msgstr "admin gebuiker " #: airtime_mvc/application/forms/StreamSettingSubForm.php:207 msgid "Admin Password" -msgstr "" +msgstr "admin wachtwoord " #: airtime_mvc/application/forms/StreamSettingSubForm.php:218 #: airtime_mvc/application/controllers/LocaleController.php:161 msgid "Getting information from the server..." -msgstr "" +msgstr "Het verkrijgen van informatie van de server ..." #: airtime_mvc/application/forms/StreamSettingSubForm.php:232 msgid "Server cannot be empty." -msgstr "" +msgstr "Server kan niet leeg zijn" #: airtime_mvc/application/forms/StreamSettingSubForm.php:237 msgid "Port cannot be empty." -msgstr "" +msgstr "poort kan niet leeg zijn" #: airtime_mvc/application/forms/StreamSettingSubForm.php:243 msgid "Mount cannot be empty with Icecast server." -msgstr "" +msgstr "Mount kan niet leeg zijn met Icecast server" #: airtime_mvc/application/forms/EditAudioMD.php:19 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 msgid "Title:" -msgstr "" +msgstr "Titel" #: airtime_mvc/application/forms/EditAudioMD.php:26 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148 msgid "Creator:" -msgstr "" +msgstr "Aangemaakt door" #: airtime_mvc/application/forms/EditAudioMD.php:33 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 msgid "Album:" -msgstr "" +msgstr "Album" #: airtime_mvc/application/forms/EditAudioMD.php:40 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12 msgid "Track:" -msgstr "" +msgstr "track" #: airtime_mvc/application/forms/EditAudioMD.php:47 #: airtime_mvc/application/forms/AddShowWhat.php:45 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 msgid "Genre:" -msgstr "" +msgstr "genre:" #: airtime_mvc/application/forms/EditAudioMD.php:55 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 msgid "Year:" -msgstr "" +msgstr "Jaar" #: airtime_mvc/application/forms/EditAudioMD.php:67 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 msgid "Label:" -msgstr "" +msgstr "label" #: airtime_mvc/application/forms/EditAudioMD.php:74 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 msgid "Composer:" -msgstr "" +msgstr "schrijver van een muziekwerk" #: airtime_mvc/application/forms/EditAudioMD.php:81 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 msgid "Conductor:" -msgstr "" +msgstr "Conductor:" #: airtime_mvc/application/forms/EditAudioMD.php:88 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 msgid "Mood:" -msgstr "" +msgstr "Mood:" #: airtime_mvc/application/forms/EditAudioMD.php:96 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 msgid "BPM:" -msgstr "" +msgstr "BPM:" #: airtime_mvc/application/forms/EditAudioMD.php:105 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 msgid "Copyright:" -msgstr "" +msgstr "Copyright:" #: airtime_mvc/application/forms/EditAudioMD.php:112 msgid "ISRC Number:" -msgstr "" +msgstr "ISRC nummer:" #: airtime_mvc/application/forms/EditAudioMD.php:119 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 msgid "Website:" -msgstr "" +msgstr "Website:" #: airtime_mvc/application/forms/EditAudioMD.php:126 #: airtime_mvc/application/forms/Login.php:52 #: airtime_mvc/application/forms/EditUser.php:118 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 msgid "Language:" -msgstr "" +msgstr "Taal:" #: airtime_mvc/application/forms/EditAudioMD.php:135 #: airtime_mvc/application/forms/AddUser.php:110 @@ -309,7 +309,7 @@ msgstr "" #: airtime_mvc/application/views/scripts/playlist/playlist.phtml:27 #: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:24 msgid "Save" -msgstr "" +msgstr "opslaan" #: airtime_mvc/application/forms/EditAudioMD.php:145 #: airtime_mvc/application/forms/EditHistory.php:141 @@ -317,185 +317,185 @@ msgstr "" #: airtime_mvc/application/controllers/LocaleController.php:284 #: airtime_mvc/application/controllers/LocaleController.php:307 msgid "Cancel" -msgstr "" +msgstr "anuleren" #: airtime_mvc/application/forms/AddUser.php:29 #: airtime_mvc/application/forms/Login.php:23 #: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" -msgstr "" +msgstr "gebuikersnaam" #: airtime_mvc/application/forms/AddUser.php:38 #: airtime_mvc/application/forms/Login.php:38 #: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" -msgstr "" +msgstr "wachtwoord" #: airtime_mvc/application/forms/AddUser.php:46 #: airtime_mvc/application/forms/EditUser.php:56 msgid "Verify Password:" -msgstr "" +msgstr "Wachtwoord verifiëren:" #: airtime_mvc/application/forms/AddUser.php:55 #: airtime_mvc/application/forms/EditUser.php:66 msgid "Firstname:" -msgstr "" +msgstr "voornaam" #: airtime_mvc/application/forms/AddUser.php:61 #: airtime_mvc/application/forms/EditUser.php:74 msgid "Lastname:" -msgstr "" +msgstr "achternaam" #: airtime_mvc/application/forms/AddUser.php:67 #: airtime_mvc/application/forms/SupportSettings.php:46 #: airtime_mvc/application/forms/RegisterAirtime.php:51 #: airtime_mvc/application/forms/EditUser.php:82 msgid "Email:" -msgstr "" +msgstr "e-mail" #: airtime_mvc/application/forms/AddUser.php:76 #: airtime_mvc/application/forms/EditUser.php:93 msgid "Mobile Phone:" -msgstr "" +msgstr "mobiel nummer" #: airtime_mvc/application/forms/AddUser.php:82 #: airtime_mvc/application/forms/EditUser.php:101 msgid "Skype:" -msgstr "" +msgstr "skype" #: airtime_mvc/application/forms/AddUser.php:88 #: airtime_mvc/application/forms/EditUser.php:109 msgid "Jabber:" -msgstr "" +msgstr "Jabber:" #: airtime_mvc/application/forms/AddUser.php:95 msgid "User Type:" -msgstr "" +msgstr "Gebruiker Type :" #: airtime_mvc/application/forms/AddUser.php:99 #: airtime_mvc/application/controllers/LocaleController.php:313 msgid "Guest" -msgstr "" +msgstr "gast" #: airtime_mvc/application/forms/AddUser.php:100 #: airtime_mvc/application/controllers/LocaleController.php:311 msgid "DJ" -msgstr "" +msgstr "DJ" #: airtime_mvc/application/forms/AddUser.php:101 #: airtime_mvc/application/controllers/LocaleController.php:312 msgid "Program Manager" -msgstr "" +msgstr "Programmabeheer" #: airtime_mvc/application/forms/AddUser.php:102 #: airtime_mvc/application/controllers/LocaleController.php:310 msgid "Admin" -msgstr "" +msgstr "Admin" #: airtime_mvc/application/forms/AddUser.php:120 #: airtime_mvc/application/forms/EditUser.php:139 msgid "Login name is not unique." -msgstr "" +msgstr "Login naam is niet uniek." #: airtime_mvc/application/forms/AddShowStyle.php:10 msgid "Background Colour:" -msgstr "" +msgstr "achtergrond kleur" #: airtime_mvc/application/forms/AddShowStyle.php:29 msgid "Text Colour:" -msgstr "" +msgstr "tekst kleur" #: airtime_mvc/application/forms/ShowBuilder.php:18 #: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" -msgstr "" +msgstr "datum start" #: airtime_mvc/application/forms/ShowBuilder.php:46 #: airtime_mvc/application/forms/DateRange.php:44 #: airtime_mvc/application/forms/AddShowRepeats.php:56 msgid "Date End:" -msgstr "" +msgstr "datum einde" #: airtime_mvc/application/forms/ShowBuilder.php:72 msgid "Show:" -msgstr "" +msgstr "Show" #: airtime_mvc/application/forms/ShowBuilder.php:80 msgid "All My Shows:" -msgstr "" +msgstr "al mij shows" #: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 #: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 msgid "days" -msgstr "" +msgstr "dagen" #: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 #: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 msgid "Day must be specified" -msgstr "" +msgstr "Dag moet worden opgegeven" #: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 #: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 msgid "Time must be specified" -msgstr "" +msgstr "Tijd moet worden opgegeven" #: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 #: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 msgid "Must wait at least 1 hour to rebroadcast" -msgstr "" +msgstr "Ten minste 1 uur opnieuw uitzenden moet wachten" #: airtime_mvc/application/forms/WatchedDirPreferences.php:14 msgid "Import Folder:" -msgstr "" +msgstr "mappen importeren" #: airtime_mvc/application/forms/WatchedDirPreferences.php:25 msgid "Watched Folders:" -msgstr "" +msgstr "Gecontroleerde mappen:" #: airtime_mvc/application/forms/WatchedDirPreferences.php:40 msgid "Not a valid Directory" -msgstr "" +msgstr "Niet een geldige map" #: airtime_mvc/application/forms/AddShowWho.php:10 msgid "Search Users:" -msgstr "" +msgstr "zoek gebruikers" #: airtime_mvc/application/forms/AddShowWho.php:24 msgid "DJs:" -msgstr "" +msgstr "DJs:" #: airtime_mvc/application/forms/Login.php:67 #: airtime_mvc/application/views/scripts/login/index.phtml:3 msgid "Login" -msgstr "" +msgstr "Inloggen" #: airtime_mvc/application/forms/Login.php:86 msgid "Type the characters you see in the picture below." -msgstr "" +msgstr "Typ de tekens die u ziet in de afbeelding hieronder." #: airtime_mvc/application/forms/GeneralPreferences.php:21 #: airtime_mvc/application/forms/SupportSettings.php:21 #: airtime_mvc/application/forms/RegisterAirtime.php:30 msgid "Station Name" -msgstr "" +msgstr "station naam" #: airtime_mvc/application/forms/GeneralPreferences.php:33 msgid "Default Crossfade Duration (s):" -msgstr "" +msgstr "Standaardduur Crossfade (s):" #: airtime_mvc/application/forms/GeneralPreferences.php:40 #: airtime_mvc/application/forms/GeneralPreferences.php:59 #: airtime_mvc/application/forms/GeneralPreferences.php:78 msgid "enter a time in seconds 0{.0}" -msgstr "" +msgstr "Voer een tijd in seconden 0 {.0}" #: airtime_mvc/application/forms/GeneralPreferences.php:52 msgid "Default Fade In (s):" -msgstr "" +msgstr "standaard fade in (s):" #: airtime_mvc/application/forms/GeneralPreferences.php:71 msgid "Default Fade Out (s):" -msgstr "" +msgstr "standaard fade uit (s):" #: airtime_mvc/application/forms/GeneralPreferences.php:89 #, php-format @@ -2167,7 +2167,7 @@ msgstr "" #: airtime_mvc/application/controllers/LocaleController.php:262 #: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5 msgid "Start" -msgstr "" +msgstr "Start" #: airtime_mvc/application/controllers/LocaleController.php:263 msgid "End" @@ -2255,7 +2255,7 @@ msgstr "" #: airtime_mvc/application/controllers/LocaleController.php:304 msgid "Disk" -msgstr "" +msgstr "hardeschijf" #: airtime_mvc/application/controllers/LocaleController.php:306 msgid "Look in" @@ -2263,11 +2263,11 @@ msgstr "" #: airtime_mvc/application/controllers/LocaleController.php:308 msgid "Open" -msgstr "" +msgstr "open" #: airtime_mvc/application/controllers/LocaleController.php:314 msgid "Guests can do the following:" -msgstr "" +msgstr "Gasten kunnen het volgende doen:" #: airtime_mvc/application/controllers/LocaleController.php:315 msgid "View schedule" @@ -2287,7 +2287,7 @@ msgstr "" #: airtime_mvc/application/controllers/LocaleController.php:319 msgid "Import media files" -msgstr "" +msgstr "Mediabestanden importeren" #: airtime_mvc/application/controllers/LocaleController.php:320 msgid "Create playlists, smart blocks, and webstreams" @@ -2331,7 +2331,7 @@ msgstr "" #: airtime_mvc/application/controllers/LocaleController.php:331 msgid "View system status" -msgstr "" +msgstr "Bekijk systeem status" #: airtime_mvc/application/controllers/LocaleController.php:332 msgid "Access playout history" @@ -2343,15 +2343,15 @@ msgstr "" #: airtime_mvc/application/controllers/LocaleController.php:335 msgid "Show / hide columns" -msgstr "" +msgstr "Geef weer / verberg kolommen" #: airtime_mvc/application/controllers/LocaleController.php:337 msgid "From {from} to {to}" -msgstr "" +msgstr "Van {from} tot {to}" #: airtime_mvc/application/controllers/LocaleController.php:338 msgid "kbps" -msgstr "" +msgstr "kbps" #: airtime_mvc/application/controllers/LocaleController.php:339 msgid "yyyy-mm-dd" @@ -2363,62 +2363,62 @@ msgstr "" #: airtime_mvc/application/controllers/LocaleController.php:341 msgid "kHz" -msgstr "" +msgstr "kHz" #: airtime_mvc/application/controllers/LocaleController.php:344 msgid "Su" -msgstr "" +msgstr "Zo" #: airtime_mvc/application/controllers/LocaleController.php:345 msgid "Mo" -msgstr "" +msgstr "Ma" #: airtime_mvc/application/controllers/LocaleController.php:346 msgid "Tu" -msgstr "" +msgstr "Di" #: airtime_mvc/application/controllers/LocaleController.php:347 msgid "We" -msgstr "" +msgstr "Wo" #: airtime_mvc/application/controllers/LocaleController.php:348 msgid "Th" -msgstr "" +msgstr "Do" #: airtime_mvc/application/controllers/LocaleController.php:349 msgid "Fr" -msgstr "" +msgstr "Vr" #: airtime_mvc/application/controllers/LocaleController.php:350 msgid "Sa" -msgstr "" +msgstr "Za" #: airtime_mvc/application/controllers/LocaleController.php:351 #: airtime_mvc/application/controllers/LocaleController.php:379 #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3 msgid "Close" -msgstr "" +msgstr "Sluiten" #: airtime_mvc/application/controllers/LocaleController.php:353 msgid "Hour" -msgstr "" +msgstr "Uur" #: airtime_mvc/application/controllers/LocaleController.php:354 msgid "Minute" -msgstr "" +msgstr "Minuut" #: airtime_mvc/application/controllers/LocaleController.php:355 msgid "Done" -msgstr "" +msgstr "Klaar" #: airtime_mvc/application/controllers/LocaleController.php:358 msgid "Select files" -msgstr "" +msgstr "Selecteer bestanden" #: airtime_mvc/application/controllers/LocaleController.php:359 #: airtime_mvc/application/controllers/LocaleController.php:360 msgid "Add files to the upload queue and click the start button." -msgstr "" +msgstr "Voeg bestanden aan de upload wachtrij toe en klik op de begin knop" #: airtime_mvc/application/controllers/LocaleController.php:361 #: airtime_mvc/application/controllers/LocaleController.php:362 @@ -2426,23 +2426,23 @@ msgstr "" #: airtime_mvc/application/views/scripts/systemstatus/index.phtml:5 #: airtime_mvc/application/views/scripts/listenerstat/index.phtml:8 msgid "Status" -msgstr "" +msgstr "Status" #: airtime_mvc/application/controllers/LocaleController.php:363 msgid "Add Files" -msgstr "" +msgstr "Bestanden toevoegen" #: airtime_mvc/application/controllers/LocaleController.php:364 msgid "Stop Upload" -msgstr "" +msgstr "Stop upload" #: airtime_mvc/application/controllers/LocaleController.php:365 msgid "Start upload" -msgstr "" +msgstr "Begin upload" #: airtime_mvc/application/controllers/LocaleController.php:366 msgid "Add files" -msgstr "" +msgstr "Bestanden toevoegen" #: airtime_mvc/application/controllers/LocaleController.php:367 #, php-format @@ -2455,15 +2455,15 @@ msgstr "" #: airtime_mvc/application/controllers/LocaleController.php:369 msgid "Drag files here." -msgstr "" +msgstr "Sleep bestanden hierheen." #: airtime_mvc/application/controllers/LocaleController.php:370 msgid "File extension error." -msgstr "" +msgstr "Bestandsextensie fout" #: airtime_mvc/application/controllers/LocaleController.php:371 msgid "File size error." -msgstr "" +msgstr "Bestandsgrote fout." #: airtime_mvc/application/controllers/LocaleController.php:372 msgid "File count error." @@ -2475,15 +2475,15 @@ msgstr "" #: airtime_mvc/application/controllers/LocaleController.php:374 msgid "HTTP Error." -msgstr "" +msgstr "HTTP fout." #: airtime_mvc/application/controllers/LocaleController.php:375 msgid "Security error." -msgstr "" +msgstr "Beveiligingsfout." #: airtime_mvc/application/controllers/LocaleController.php:376 msgid "Generic error." -msgstr "" +msgstr "Generieke fout." #: airtime_mvc/application/controllers/LocaleController.php:377 msgid "IO error." @@ -2492,7 +2492,7 @@ msgstr "" #: airtime_mvc/application/controllers/LocaleController.php:378 #, php-format msgid "File: %s" -msgstr "" +msgstr "Bestand: %s" #: airtime_mvc/application/controllers/LocaleController.php:380 #, php-format @@ -2509,11 +2509,11 @@ msgstr "" #: airtime_mvc/application/controllers/LocaleController.php:383 msgid "Error: File too large: " -msgstr "" +msgstr "Fout: Bestand is te groot" #: airtime_mvc/application/controllers/LocaleController.php:384 msgid "Error: Invalid file extension: " -msgstr "" +msgstr "Fout: Niet toegestane bestandsextensie " #: airtime_mvc/application/controllers/LocaleController.php:386 #: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:25 @@ -2808,7 +2808,7 @@ msgstr "" #: airtime_mvc/application/views/scripts/systemstatus/index.phtml:4 msgid "Service" -msgstr "" +msgstr "Dienst" #: airtime_mvc/application/views/scripts/systemstatus/index.phtml:6 msgid "Uptime" @@ -2820,7 +2820,7 @@ msgstr "" #: airtime_mvc/application/views/scripts/systemstatus/index.phtml:8 msgid "Memory" -msgstr "" +msgstr "Geheugen" #: airtime_mvc/application/views/scripts/systemstatus/index.phtml:14 #, php-format @@ -2829,7 +2829,7 @@ msgstr "" #: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 msgid "Disk Space" -msgstr "" +msgstr "Hardeschijf ruimte" #: airtime_mvc/application/views/scripts/form/preferences.phtml:5 msgid "Email / Mail Server Settings" @@ -3046,15 +3046,15 @@ msgstr "" #: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:39 msgid "or" -msgstr "" +msgstr "of" #: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:40 msgid "and" -msgstr "" +msgstr "en" #: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:63 msgid " to " -msgstr "" +msgstr "tot" #: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:120 #: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:133 @@ -3113,31 +3113,31 @@ msgstr "" #: airtime_mvc/application/views/scripts/playlist/playlist.phtml:11 #: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:11 msgid "New" -msgstr "" +msgstr "Nieuw" #: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8 #: airtime_mvc/application/views/scripts/playlist/playlist.phtml:14 #: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:14 msgid "New Playlist" -msgstr "" +msgstr "Nieuwe Playlist" #: airtime_mvc/application/views/scripts/webstream/webstream.phtml:9 #: airtime_mvc/application/views/scripts/playlist/playlist.phtml:15 #: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:15 msgid "New Smart Block" -msgstr "" +msgstr "Nieuw Slim Blok" #: airtime_mvc/application/views/scripts/webstream/webstream.phtml:10 #: airtime_mvc/application/views/scripts/playlist/playlist.phtml:16 #: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:16 msgid "New Webstream" -msgstr "" +msgstr "Nieuwe Webstream" #: airtime_mvc/application/views/scripts/webstream/webstream.phtml:39 #: airtime_mvc/application/views/scripts/playlist/playlist.phtml:53 #: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:55 msgid "View / edit description" -msgstr "" +msgstr "Bekijk / bewerk beschrijving" #: airtime_mvc/application/views/scripts/webstream/webstream.phtml:52 msgid "Stream URL:" @@ -3145,11 +3145,11 @@ msgstr "" #: airtime_mvc/application/views/scripts/webstream/webstream.phtml:57 msgid "Default Length:" -msgstr "" +msgstr "Standaard lengte:" #: airtime_mvc/application/views/scripts/webstream/webstream.phtml:64 msgid "No webstream" -msgstr "" +msgstr "Geen webstream" #: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2 msgid "Stream Settings" @@ -3175,7 +3175,7 @@ msgstr "" #: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:5 #: airtime_mvc/application/views/scripts/library/library.phtml:10 msgid "Advanced Search Options" -msgstr "" +msgstr "Geadvanceerde zoek opties" #: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23 msgid "previous" @@ -3195,12 +3195,12 @@ msgstr "" #: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42 msgid "stop" -msgstr "" +msgstr "Stop" #: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60 #: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90 msgid "mute" -msgstr "" +msgstr "dempen" #: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63 #: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91 @@ -3323,11 +3323,11 @@ msgstr "" #: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3 msgid "Share" -msgstr "" +msgstr "Deel" #: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64 msgid "Select stream:" -msgstr "" +msgstr "Selecteer stream:" #: airtime_mvc/application/views/scripts/dashboard/about.phtml:9 #, php-format @@ -3343,7 +3343,7 @@ msgstr "" #: airtime_mvc/application/views/scripts/login/password-change.phtml:3 msgid "New password" -msgstr "" +msgstr "Nieuw wachtwoord" #: airtime_mvc/application/views/scripts/login/password-change.phtml:6 msgid "Please enter and confirm your new password in the fields below." @@ -3365,7 +3365,7 @@ msgstr "" #: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:7 msgid "Back to login screen" -msgstr "" +msgstr "Terug naar het inlog scherm" #: airtime_mvc/application/views/scripts/login/index.phtml:7 #, php-format @@ -3376,15 +3376,15 @@ msgstr "" #: airtime_mvc/application/views/scripts/partialviews/header.phtml:3 msgid "Previous:" -msgstr "" +msgstr "Vorige:" #: airtime_mvc/application/views/scripts/partialviews/header.phtml:10 msgid "Next:" -msgstr "" +msgstr "Volgende:" #: airtime_mvc/application/views/scripts/partialviews/header.phtml:24 msgid "Source Streams" -msgstr "" +msgstr "Bron Streams" #: airtime_mvc/application/views/scripts/partialviews/header.phtml:29 msgid "Master Source" @@ -3392,7 +3392,7 @@ msgstr "" #: airtime_mvc/application/views/scripts/partialviews/header.phtml:38 msgid "Show Source" -msgstr "" +msgstr "Bron weergeven" #: airtime_mvc/application/views/scripts/partialviews/header.phtml:45 msgid "Scheduled Play" @@ -3404,7 +3404,7 @@ msgstr "" #: airtime_mvc/application/views/scripts/partialviews/header.phtml:55 msgid "Listen" -msgstr "" +msgstr "Luister" #: airtime_mvc/application/views/scripts/partialviews/header.phtml:59 msgid "Station time" @@ -3421,7 +3421,7 @@ msgstr "" #: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9 msgid "My Account" -msgstr "" +msgstr "Mijn account" #: airtime_mvc/application/views/scripts/user/add-user.phtml:3 msgid "Manage Users" @@ -3513,7 +3513,7 @@ msgstr "" #: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:72 #: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19 msgid "Fade in: " -msgstr "" +msgstr "Fade in:" #: airtime_mvc/application/views/scripts/playlist/playlist.phtml:70 #: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:75 @@ -3574,11 +3574,11 @@ msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10 msgid "What" -msgstr "" +msgstr "Wat" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 msgid "When" -msgstr "" +msgstr "Wanneer" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:19 msgid "Live Stream Input" @@ -3590,11 +3590,11 @@ msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:29 msgid "Who" -msgstr "" +msgstr "Wie" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:33 msgid "Style" -msgstr "" +msgstr "Stijl" #: airtime_mvc/application/models/ShowBuilder.php:212 #, php-format @@ -3880,31 +3880,31 @@ msgstr "" #: airtime_mvc/application/services/HistoryService.php:1119 msgid "Track" -msgstr "" +msgstr "track" #: airtime_mvc/application/services/HistoryService.php:1167 msgid "Played" -msgstr "" +msgstr "Gespeeld" #: airtime_mvc/application/common/DateHelper.php:213 #, php-format msgid "The year %s must be within the range of 1753 - 9999" -msgstr "" +msgstr "Het jaar %s moet binnen het bereik van 1753-9999" #: airtime_mvc/application/common/DateHelper.php:216 #, php-format msgid "%s-%s-%s is not a valid date" -msgstr "" +msgstr "%s-%s-%s dit is geen geldige datum" #: airtime_mvc/application/common/DateHelper.php:240 #, php-format msgid "%s:%s:%s is not a valid time" -msgstr "" +msgstr "%s:%s:%s Dit is geen geldige tijd." #: airtime_mvc/library/propel/contrib/pear/HTML_QuickForm_Propel/Propel.php:512 msgid "Please selection an option" -msgstr "" +msgstr "Gelieve selectie een optie" #: airtime_mvc/library/propel/contrib/pear/HTML_QuickForm_Propel/Propel.php:531 msgid "No Records" -msgstr "" +msgstr "Geen records" From 3b33f556528399ac64ae6e6380b13f0a8e9bacb0 Mon Sep 17 00:00:00 2001 From: drigato Date: Wed, 15 Apr 2015 10:48:31 -0400 Subject: [PATCH 23/35] Fixed a repeating show bug If the first instance has already started or ended we were getting the wrong next instance because the result set was not ordered --- airtime_mvc/application/services/ShowFormService.php | 1 + 1 file changed, 1 insertion(+) diff --git a/airtime_mvc/application/services/ShowFormService.php b/airtime_mvc/application/services/ShowFormService.php index 94cc0068a7..5a17932b29 100644 --- a/airtime_mvc/application/services/ShowFormService.php +++ b/airtime_mvc/application/services/ShowFormService.php @@ -402,6 +402,7 @@ public function getNextFutureRepeatShowTime() ->filterByDbShowId($this->ccShow->getDbId()) ->filterByDbModifiedInstance(false) ->filterByDbStarts(gmdate("Y-m-d H:i:s"), Criteria::GREATER_THAN) + ->orderByDbStarts() ->findOne(); $starts = new DateTime($ccShowInstance->getDbStarts(), new DateTimeZone("UTC")); From 4267c4e86d1b06be1979d97964308d42265c8ac0 Mon Sep 17 00:00:00 2001 From: Albert Santoni Date: Wed, 15 Apr 2015 16:44:04 -0400 Subject: [PATCH 24/35] CC-6024: Cannot drag and drop tracks between shows in the Now Playing screen --- airtime_mvc/application/models/Scheduler.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/airtime_mvc/application/models/Scheduler.php b/airtime_mvc/application/models/Scheduler.php index 4208ff5c76..edcf2da10e 100644 --- a/airtime_mvc/application/models/Scheduler.php +++ b/airtime_mvc/application/models/Scheduler.php @@ -828,7 +828,8 @@ private function insertAfter($scheduleItems, $mediaItems, $filesToInsert=null, $ "fade_in = '{$file["fadein"]}', ". "fade_out = '{$file["fadeout"]}', ". "clip_length = '{$file["cliplength"]}', ". - "position = {$pos} ". + "position = {$pos}, ". + "instance_id = {$instanceId} ". "WHERE id = {$sched["id"]}"; Application_Common_Database::prepareAndExecute( From aa0d0f959a02ba341f17306167e98ec1906ed12e Mon Sep 17 00:00:00 2001 From: Albert Santoni Date: Thu, 16 Apr 2015 12:10:56 -0400 Subject: [PATCH 25/35] Remove unnecessary LOCK TABLE that can cause deadlocks in rare circumstances --- airtime_mvc/application/models/Preference.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/airtime_mvc/application/models/Preference.php b/airtime_mvc/application/models/Preference.php index 1ba71e7825..f67cc10514 100644 --- a/airtime_mvc/application/models/Preference.php +++ b/airtime_mvc/application/models/Preference.php @@ -37,8 +37,6 @@ private static function setValue($key, $value, $isUserValue = false) if ($isUserValue && is_null($userId)) throw new Exception("User id can't be null for a user preference {$key}."); - Application_Common_Database::prepareAndExecute("LOCK TABLE cc_pref"); - //Check if key already exists $sql = "SELECT COUNT(*) FROM cc_pref" ." WHERE keystr = :key"; From f7d9363fffeee47b1f27e77be8da9124437e290f Mon Sep 17 00:00:00 2001 From: localizer Date: Fri, 17 Apr 2015 12:51:13 +0000 Subject: [PATCH 26/35] updated translation resources --- .../locale/nl_NL/LC_MESSAGES/airtime.mo | Bin 8722 -> 44212 bytes .../locale/nl_NL/LC_MESSAGES/airtime.po | 880 ++-- airtime_mvc/locale/tr/LC_MESSAGES/airtime.mo | Bin 0 -> 460 bytes airtime_mvc/locale/tr/LC_MESSAGES/airtime.po | 3907 +++++++++++++++++ 4 files changed, 4347 insertions(+), 440 deletions(-) create mode 100644 airtime_mvc/locale/tr/LC_MESSAGES/airtime.mo create mode 100644 airtime_mvc/locale/tr/LC_MESSAGES/airtime.po diff --git a/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.mo index 3fea198d915da83d766c67c31a55f3e4e58cb6df..1561dd4865fc2a562b918691f9f19c8e81e5be1f 100644 GIT binary patch literal 44212 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 k\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/airtime/language/nl_NL/)\n" "MIME-Version: 1.0\n" @@ -502,170 +502,170 @@ msgstr "standaard fade uit (s):" msgid "" "Allow Remote Websites To Access \"Schedule\" Info?%s (Enable this to make " "front-end widgets work.)" -msgstr "" +msgstr "Toestaan van Websites om RAS \"Schedule\" Info? %s (Schakel dit om front-end widgets werken.)" #: airtime_mvc/application/forms/GeneralPreferences.php:90 msgid "Disabled" -msgstr "" +msgstr "Uitgeschakeld" #: airtime_mvc/application/forms/GeneralPreferences.php:91 msgid "Enabled" -msgstr "" +msgstr "Ingeschakeld" #: airtime_mvc/application/forms/GeneralPreferences.php:97 msgid "Default Interface Language" -msgstr "" +msgstr "De taal van de gebruikersinterface van de standaard" #: airtime_mvc/application/forms/GeneralPreferences.php:105 msgid "Station Timezone" -msgstr "" +msgstr "station tijdzone" #: airtime_mvc/application/forms/GeneralPreferences.php:113 msgid "Week Starts On" -msgstr "" +msgstr "Week start aan" #: airtime_mvc/application/forms/GeneralPreferences.php:123 #: airtime_mvc/application/controllers/LocaleController.php:238 msgid "Sunday" -msgstr "" +msgstr "zondag" #: airtime_mvc/application/forms/GeneralPreferences.php:124 #: airtime_mvc/application/controllers/LocaleController.php:239 msgid "Monday" -msgstr "" +msgstr "maandag" #: airtime_mvc/application/forms/GeneralPreferences.php:125 #: airtime_mvc/application/controllers/LocaleController.php:240 msgid "Tuesday" -msgstr "" +msgstr "dinsdag" #: airtime_mvc/application/forms/GeneralPreferences.php:126 #: airtime_mvc/application/controllers/LocaleController.php:241 msgid "Wednesday" -msgstr "" +msgstr "woensdag" #: airtime_mvc/application/forms/GeneralPreferences.php:127 #: airtime_mvc/application/controllers/LocaleController.php:242 msgid "Thursday" -msgstr "" +msgstr "donderdag" #: airtime_mvc/application/forms/GeneralPreferences.php:128 #: airtime_mvc/application/controllers/LocaleController.php:243 msgid "Friday" -msgstr "" +msgstr "vrijdag" #: airtime_mvc/application/forms/GeneralPreferences.php:129 #: airtime_mvc/application/controllers/LocaleController.php:244 msgid "Saturday" -msgstr "" +msgstr "zaterdag" #: airtime_mvc/application/forms/AddShowRepeats.php:10 msgid "Link:" -msgstr "" +msgstr "link" #: airtime_mvc/application/forms/AddShowRepeats.php:16 msgid "Repeat Type:" -msgstr "" +msgstr "Herhaal Type:" #: airtime_mvc/application/forms/AddShowRepeats.php:19 msgid "weekly" -msgstr "" +msgstr "wekelijks" #: airtime_mvc/application/forms/AddShowRepeats.php:20 msgid "every 2 weeks" -msgstr "" +msgstr "elke 2 weken" #: airtime_mvc/application/forms/AddShowRepeats.php:21 msgid "every 3 weeks" -msgstr "" +msgstr "elke 3 weken" #: airtime_mvc/application/forms/AddShowRepeats.php:22 msgid "every 4 weeks" -msgstr "" +msgstr "elke 4 weken" #: airtime_mvc/application/forms/AddShowRepeats.php:23 msgid "monthly" -msgstr "" +msgstr "per maand" #: airtime_mvc/application/forms/AddShowRepeats.php:32 msgid "Select Days:" -msgstr "" +msgstr "Selecteer dagen:" #: airtime_mvc/application/forms/AddShowRepeats.php:35 #: airtime_mvc/application/controllers/LocaleController.php:245 msgid "Sun" -msgstr "" +msgstr "zon" #: airtime_mvc/application/forms/AddShowRepeats.php:36 #: airtime_mvc/application/controllers/LocaleController.php:246 msgid "Mon" -msgstr "" +msgstr "ma" #: airtime_mvc/application/forms/AddShowRepeats.php:37 #: airtime_mvc/application/controllers/LocaleController.php:247 msgid "Tue" -msgstr "" +msgstr "di" #: airtime_mvc/application/forms/AddShowRepeats.php:38 #: airtime_mvc/application/controllers/LocaleController.php:248 msgid "Wed" -msgstr "" +msgstr "wo" #: airtime_mvc/application/forms/AddShowRepeats.php:39 #: airtime_mvc/application/controllers/LocaleController.php:249 msgid "Thu" -msgstr "" +msgstr "do" #: airtime_mvc/application/forms/AddShowRepeats.php:40 #: airtime_mvc/application/controllers/LocaleController.php:250 msgid "Fri" -msgstr "" +msgstr "vrij" #: airtime_mvc/application/forms/AddShowRepeats.php:41 #: airtime_mvc/application/controllers/LocaleController.php:251 msgid "Sat" -msgstr "" +msgstr "zat" #: airtime_mvc/application/forms/AddShowRepeats.php:47 msgid "Repeat By:" -msgstr "" +msgstr "Herhaal door:" #: airtime_mvc/application/forms/AddShowRepeats.php:50 msgid "day of the month" -msgstr "" +msgstr "dag van de maand" #: airtime_mvc/application/forms/AddShowRepeats.php:50 msgid "day of the week" -msgstr "" +msgstr "Dag van de week" #: airtime_mvc/application/forms/AddShowRepeats.php:69 msgid "No End?" -msgstr "" +msgstr "Geen einde?" #: airtime_mvc/application/forms/AddShowRepeats.php:106 msgid "End date must be after start date" -msgstr "" +msgstr "Einddatum moet worden na begindatum ligt" #: airtime_mvc/application/forms/AddShowRepeats.php:113 msgid "Please select a repeat day" -msgstr "" +msgstr "Selecteer een Herhaal dag" #: airtime_mvc/application/forms/PasswordChange.php:28 msgid "Confirm new password" -msgstr "" +msgstr "Bevestig nieuw wachtwoord" #: airtime_mvc/application/forms/PasswordChange.php:36 msgid "Password confirmation does not match your password." -msgstr "" +msgstr "Wachtwoord bevestiging komt niet overeen met uw wachtwoord." #: airtime_mvc/application/forms/PasswordChange.php:43 msgid "Get new password" -msgstr "" +msgstr "Nieuw Wachtwoord opvragen" #: airtime_mvc/application/forms/SmartBlockCriteria.php:48 #: airtime_mvc/application/models/Block.php:1340 msgid "Select criteria" -msgstr "" +msgstr "Selecteer criteria" #: airtime_mvc/application/forms/SmartBlockCriteria.php:49 #: airtime_mvc/application/controllers/LocaleController.php:66 @@ -673,18 +673,18 @@ msgstr "" #: airtime_mvc/application/models/Block.php:1341 #: airtime_mvc/application/services/HistoryService.php:1110 msgid "Album" -msgstr "" +msgstr "Album" #: airtime_mvc/application/forms/SmartBlockCriteria.php:50 #: airtime_mvc/application/models/Block.php:1342 msgid "Bit Rate (Kbps)" -msgstr "" +msgstr "Bit Rate (kbps)" #: airtime_mvc/application/forms/SmartBlockCriteria.php:51 #: airtime_mvc/application/controllers/LocaleController.php:68 #: airtime_mvc/application/models/Block.php:1343 msgid "BPM" -msgstr "" +msgstr "BPM" #: airtime_mvc/application/forms/SmartBlockCriteria.php:52 #: airtime_mvc/application/controllers/LocaleController.php:69 @@ -692,14 +692,14 @@ msgstr "" #: airtime_mvc/application/services/HistoryService.php:1115 #: airtime_mvc/application/services/HistoryService.php:1169 msgid "Composer" -msgstr "" +msgstr "Componist" #: airtime_mvc/application/forms/SmartBlockCriteria.php:53 #: airtime_mvc/application/controllers/LocaleController.php:70 #: airtime_mvc/application/models/Block.php:1345 #: airtime_mvc/application/services/HistoryService.php:1120 msgid "Conductor" -msgstr "" +msgstr "Dirigent" #: airtime_mvc/application/forms/SmartBlockCriteria.php:54 #: airtime_mvc/application/controllers/LocaleController.php:71 @@ -707,7 +707,7 @@ msgstr "" #: airtime_mvc/application/services/HistoryService.php:1117 #: airtime_mvc/application/services/HistoryService.php:1170 msgid "Copyright" -msgstr "" +msgstr "Copyright:" #: airtime_mvc/application/forms/SmartBlockCriteria.php:57 #: airtime_mvc/application/controllers/LocaleController.php:65 @@ -717,46 +717,46 @@ msgstr "" #: airtime_mvc/application/services/HistoryService.php:1149 #: airtime_mvc/application/services/HistoryService.php:1166 msgid "Creator" -msgstr "" +msgstr "Aangemaakt door" #: airtime_mvc/application/forms/SmartBlockCriteria.php:58 #: airtime_mvc/application/controllers/LocaleController.php:72 #: airtime_mvc/application/models/Block.php:1350 msgid "Encoded By" -msgstr "" +msgstr "Encoded Bij" #: airtime_mvc/application/forms/SmartBlockCriteria.php:60 #: airtime_mvc/application/controllers/LocaleController.php:74 #: airtime_mvc/application/models/Block.php:1352 #: airtime_mvc/application/services/HistoryService.php:1116 msgid "ISRC" -msgstr "" +msgstr "ISRC" #: airtime_mvc/application/forms/SmartBlockCriteria.php:61 #: airtime_mvc/application/controllers/LocaleController.php:75 #: airtime_mvc/application/models/Block.php:1353 #: airtime_mvc/application/services/HistoryService.php:1114 msgid "Label" -msgstr "" +msgstr "label" #: airtime_mvc/application/forms/SmartBlockCriteria.php:62 #: airtime_mvc/application/controllers/LocaleController.php:76 #: airtime_mvc/application/models/Block.php:1354 #: airtime_mvc/application/services/HistoryService.php:1121 msgid "Language" -msgstr "" +msgstr "Taal" #: airtime_mvc/application/forms/SmartBlockCriteria.php:63 #: airtime_mvc/application/controllers/LocaleController.php:77 #: airtime_mvc/application/models/Block.php:1355 msgid "Last Modified" -msgstr "" +msgstr "Laatst Gewijzigd" #: airtime_mvc/application/forms/SmartBlockCriteria.php:64 #: airtime_mvc/application/controllers/LocaleController.php:78 #: airtime_mvc/application/models/Block.php:1356 msgid "Last Played" -msgstr "" +msgstr "Laatst gespeeld" #: airtime_mvc/application/forms/SmartBlockCriteria.php:65 #: airtime_mvc/application/controllers/LocaleController.php:79 @@ -765,37 +765,37 @@ msgstr "" #: airtime_mvc/application/services/HistoryService.php:1111 #: airtime_mvc/application/services/HistoryService.php:1168 msgid "Length" -msgstr "" +msgstr "Lengte" #: airtime_mvc/application/forms/SmartBlockCriteria.php:66 #: airtime_mvc/application/controllers/LocaleController.php:80 #: airtime_mvc/application/models/Block.php:1358 msgid "Mime" -msgstr "" +msgstr "Mime" #: airtime_mvc/application/forms/SmartBlockCriteria.php:67 #: airtime_mvc/application/controllers/LocaleController.php:81 #: airtime_mvc/application/models/Block.php:1359 #: airtime_mvc/application/services/HistoryService.php:1113 msgid "Mood" -msgstr "" +msgstr "Mood" #: airtime_mvc/application/forms/SmartBlockCriteria.php:68 #: airtime_mvc/application/controllers/LocaleController.php:82 #: airtime_mvc/application/models/Block.php:1360 msgid "Owner" -msgstr "" +msgstr "Eigenaar" #: airtime_mvc/application/forms/SmartBlockCriteria.php:69 #: airtime_mvc/application/controllers/LocaleController.php:83 #: airtime_mvc/application/models/Block.php:1361 msgid "Replay Gain" -msgstr "" +msgstr "Herhalen Gain" #: airtime_mvc/application/forms/SmartBlockCriteria.php:70 #: airtime_mvc/application/models/Block.php:1362 msgid "Sample Rate (kHz)" -msgstr "" +msgstr "Sample Rate (kHz)" #: airtime_mvc/application/forms/SmartBlockCriteria.php:71 #: airtime_mvc/application/controllers/LocaleController.php:64 @@ -805,32 +805,32 @@ msgstr "" #: airtime_mvc/application/services/HistoryService.php:1148 #: airtime_mvc/application/services/HistoryService.php:1165 msgid "Title" -msgstr "" +msgstr "Titel" #: airtime_mvc/application/forms/SmartBlockCriteria.php:72 #: airtime_mvc/application/controllers/LocaleController.php:85 #: airtime_mvc/application/models/Block.php:1364 msgid "Track Number" -msgstr "" +msgstr "Track nummer" #: airtime_mvc/application/forms/SmartBlockCriteria.php:73 #: airtime_mvc/application/controllers/LocaleController.php:86 #: airtime_mvc/application/models/Block.php:1365 msgid "Uploaded" -msgstr "" +msgstr "Uploaded" #: airtime_mvc/application/forms/SmartBlockCriteria.php:74 #: airtime_mvc/application/controllers/LocaleController.php:87 #: airtime_mvc/application/models/Block.php:1366 msgid "Website" -msgstr "" +msgstr "Website:" #: airtime_mvc/application/forms/SmartBlockCriteria.php:75 #: airtime_mvc/application/controllers/LocaleController.php:88 #: airtime_mvc/application/models/Block.php:1367 #: airtime_mvc/application/services/HistoryService.php:1118 msgid "Year" -msgstr "" +msgstr "Jaar" #: airtime_mvc/application/forms/SmartBlockCriteria.php:87 #: airtime_mvc/application/forms/SmartBlockCriteria.php:103 @@ -840,19 +840,19 @@ msgstr "" #: airtime_mvc/application/controllers/LocaleController.php:139 #: airtime_mvc/application/models/Block.php:1371 msgid "Select modifier" -msgstr "" +msgstr "Selecteer modifier" #: airtime_mvc/application/forms/SmartBlockCriteria.php:88 #: airtime_mvc/application/controllers/LocaleController.php:140 #: airtime_mvc/application/models/Block.php:1372 msgid "contains" -msgstr "" +msgstr "bevat" #: airtime_mvc/application/forms/SmartBlockCriteria.php:89 #: airtime_mvc/application/controllers/LocaleController.php:141 #: airtime_mvc/application/models/Block.php:1373 msgid "does not contain" -msgstr "" +msgstr "bevat niet" #: airtime_mvc/application/forms/SmartBlockCriteria.php:90 #: airtime_mvc/application/forms/SmartBlockCriteria.php:104 @@ -860,7 +860,7 @@ msgstr "" #: airtime_mvc/application/models/Block.php:1374 #: airtime_mvc/application/models/Block.php:1378 msgid "is" -msgstr "" +msgstr "is" #: airtime_mvc/application/forms/SmartBlockCriteria.php:91 #: airtime_mvc/application/forms/SmartBlockCriteria.php:105 @@ -868,423 +868,423 @@ msgstr "" #: airtime_mvc/application/models/Block.php:1375 #: airtime_mvc/application/models/Block.php:1379 msgid "is not" -msgstr "" +msgstr "is niet gelijk aan" #: airtime_mvc/application/forms/SmartBlockCriteria.php:92 #: airtime_mvc/application/controllers/LocaleController.php:144 #: airtime_mvc/application/models/Block.php:1376 msgid "starts with" -msgstr "" +msgstr "Begint met" #: airtime_mvc/application/forms/SmartBlockCriteria.php:93 #: airtime_mvc/application/controllers/LocaleController.php:145 #: airtime_mvc/application/models/Block.php:1377 msgid "ends with" -msgstr "" +msgstr "Eindigt op" #: airtime_mvc/application/forms/SmartBlockCriteria.php:106 #: airtime_mvc/application/controllers/LocaleController.php:146 #: airtime_mvc/application/models/Block.php:1380 msgid "is greater than" -msgstr "" +msgstr "is groter dan" #: airtime_mvc/application/forms/SmartBlockCriteria.php:107 #: airtime_mvc/application/controllers/LocaleController.php:147 #: airtime_mvc/application/models/Block.php:1381 msgid "is less than" -msgstr "" +msgstr "is minder dan" #: airtime_mvc/application/forms/SmartBlockCriteria.php:108 #: airtime_mvc/application/controllers/LocaleController.php:148 #: airtime_mvc/application/models/Block.php:1382 msgid "is in the range" -msgstr "" +msgstr "in het gebied" #: airtime_mvc/application/forms/SmartBlockCriteria.php:118 msgid "hours" -msgstr "" +msgstr "Uren" #: airtime_mvc/application/forms/SmartBlockCriteria.php:119 msgid "minutes" -msgstr "" +msgstr "minuten" #: airtime_mvc/application/forms/SmartBlockCriteria.php:120 #: airtime_mvc/application/models/Block.php:333 msgid "items" -msgstr "" +msgstr "artikelen" #: airtime_mvc/application/forms/SmartBlockCriteria.php:167 msgid "Set smart block type:" -msgstr "" +msgstr "Stel slimme blok type:" #: airtime_mvc/application/forms/SmartBlockCriteria.php:170 msgid "Static" -msgstr "" +msgstr "status" #: airtime_mvc/application/forms/SmartBlockCriteria.php:171 msgid "Dynamic" -msgstr "" +msgstr "Dynamisch" #: airtime_mvc/application/forms/SmartBlockCriteria.php:285 msgid "Allow Repeat Tracks:" -msgstr "" +msgstr "Laat Repeat Tracks:" #: airtime_mvc/application/forms/SmartBlockCriteria.php:302 msgid "Limit to" -msgstr "" +msgstr "Beperken tot" #: airtime_mvc/application/forms/SmartBlockCriteria.php:324 msgid "Generate playlist content and save criteria" -msgstr "" +msgstr "Genereren van inhoud van de afspeellijst en criteria opslaan" #: airtime_mvc/application/forms/SmartBlockCriteria.php:326 msgid "Generate" -msgstr "" +msgstr "Genereren" #: airtime_mvc/application/forms/SmartBlockCriteria.php:332 msgid "Shuffle playlist content" -msgstr "" +msgstr "Shuffle afspeellijst inhoud" #: airtime_mvc/application/forms/SmartBlockCriteria.php:334 #: airtime_mvc/application/views/scripts/playlist/playlist.phtml:24 msgid "Shuffle" -msgstr "" +msgstr "Shuffle" #: airtime_mvc/application/forms/SmartBlockCriteria.php:500 #: airtime_mvc/application/forms/SmartBlockCriteria.php:512 msgid "Limit cannot be empty or smaller than 0" -msgstr "" +msgstr "Limiet kan niet leeg zijn of kleiner is dan 0" #: airtime_mvc/application/forms/SmartBlockCriteria.php:505 msgid "Limit cannot be more than 24 hrs" -msgstr "" +msgstr "Limiet mag niet meer dan 24 uur" #: airtime_mvc/application/forms/SmartBlockCriteria.php:515 msgid "The value should be an integer" -msgstr "" +msgstr "De waarde moet een geheel getal" #: airtime_mvc/application/forms/SmartBlockCriteria.php:518 msgid "500 is the max item limit value you can set" -msgstr "" +msgstr "500 is de grenswaarde max object die kunt u instellen" #: airtime_mvc/application/forms/SmartBlockCriteria.php:529 msgid "You must select Criteria and Modifier" -msgstr "" +msgstr "U moet Criteria en Modifier selecteren" #: airtime_mvc/application/forms/SmartBlockCriteria.php:536 msgid "'Length' should be in '00:00:00' format" -msgstr "" +msgstr "'Lengte' moet in ' 00:00:00 ' formaat" #: airtime_mvc/application/forms/SmartBlockCriteria.php:541 #: airtime_mvc/application/forms/SmartBlockCriteria.php:554 msgid "" "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 " "00:00:00)" -msgstr "" +msgstr "De waarde moet in timestamp indeling (bijvoorbeeld 0000-00-00 of 0000-00-00 00:00:00)" #: airtime_mvc/application/forms/SmartBlockCriteria.php:568 msgid "The value has to be numeric" -msgstr "" +msgstr "De waarde moet worden numerieke" #: airtime_mvc/application/forms/SmartBlockCriteria.php:573 msgid "The value should be less then 2147483648" -msgstr "" +msgstr "De waarde moet minder dan 2147483648" #: airtime_mvc/application/forms/SmartBlockCriteria.php:578 #, php-format msgid "The value should be less than %s characters" -msgstr "" +msgstr "De waarde moet kleiner zijn dan %s tekens" #: airtime_mvc/application/forms/SmartBlockCriteria.php:585 msgid "Value cannot be empty" -msgstr "" +msgstr "Waarde kan niet leeg" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 msgid "Auto Switch Off" -msgstr "" +msgstr "Auto uitschakelen" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:26 msgid "Auto Switch On" -msgstr "" +msgstr "Auto inschakelen" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:33 msgid "Switch Transition Fade (s)" -msgstr "" +msgstr "Schakelaar overgang Fade (s)" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:36 msgid "enter a time in seconds 00{.000000}" -msgstr "" +msgstr "Voer een tijd in seconden 00 {.000000}" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:45 msgid "Master Username" -msgstr "" +msgstr "Master gebruikersnaam" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:62 msgid "Master Password" -msgstr "" +msgstr "Master wachtwoord" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:70 msgid "Master Source Connection URL" -msgstr "" +msgstr "Master bron verbindings URL" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:78 msgid "Show Source Connection URL" -msgstr "" +msgstr "Toon Bron verbinding URL" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:87 msgid "Master Source Port" -msgstr "" +msgstr "Master bron poort" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:96 msgid "Master Source Mount Point" -msgstr "" +msgstr "Master bron koppelpunt" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:106 msgid "Show Source Port" -msgstr "" +msgstr "Toon bron poort" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:115 msgid "Show Source Mount Point" -msgstr "" +msgstr "Toon bron koppel punt" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:153 msgid "You cannot use same port as Master DJ port." -msgstr "" +msgstr "U niet dezelfde poort gebruiken als Master DJ poort." #: airtime_mvc/application/forms/LiveStreamingPreferences.php:164 #: airtime_mvc/application/forms/LiveStreamingPreferences.php:182 #, php-format msgid "Port %s is not available" -msgstr "" +msgstr "Poort %s is niet beschikbaar" #: airtime_mvc/application/forms/SupportSettings.php:34 #: airtime_mvc/application/forms/RegisterAirtime.php:39 msgid "Phone:" -msgstr "" +msgstr "Telefoon" #: airtime_mvc/application/forms/SupportSettings.php:57 #: airtime_mvc/application/forms/RegisterAirtime.php:62 msgid "Station Web Site:" -msgstr "" +msgstr "Station Web Site:" #: airtime_mvc/application/forms/SupportSettings.php:68 #: airtime_mvc/application/forms/RegisterAirtime.php:73 msgid "Country:" -msgstr "" +msgstr "Land:" #: airtime_mvc/application/forms/SupportSettings.php:79 #: airtime_mvc/application/forms/RegisterAirtime.php:84 msgid "City:" -msgstr "" +msgstr "plaats" #: airtime_mvc/application/forms/SupportSettings.php:91 #: airtime_mvc/application/forms/RegisterAirtime.php:96 msgid "Station Description:" -msgstr "" +msgstr "Beschrijving van het station:" #: airtime_mvc/application/forms/SupportSettings.php:101 #: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" -msgstr "" +msgstr "Station Logo:" #: airtime_mvc/application/forms/SupportSettings.php:112 #: airtime_mvc/application/forms/RegisterAirtime.php:116 #: airtime_mvc/application/controllers/LocaleController.php:330 msgid "Send support feedback" -msgstr "" +msgstr "Ondersteuning feedback verzenden" #: airtime_mvc/application/forms/SupportSettings.php:122 #: airtime_mvc/application/forms/RegisterAirtime.php:126 #, php-format msgid "Promote my station on %s" -msgstr "" +msgstr "Promoot mijn station aan %s" #: airtime_mvc/application/forms/SupportSettings.php:150 #: airtime_mvc/application/forms/RegisterAirtime.php:151 #, php-format msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "" +msgstr "Door dit vakje aan, ik ga akkoord met %s's van %s privacy beleid %s" #: airtime_mvc/application/forms/SupportSettings.php:174 #: airtime_mvc/application/forms/RegisterAirtime.php:169 msgid "You have to agree to privacy policy." -msgstr "" +msgstr "Je moet eens met privacy policy." #: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26 #: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 msgid "Value is required and can't be empty" -msgstr "" +msgstr "Waarde is vereist en mag niet leeg zijn" #: airtime_mvc/application/forms/EditHistoryItem.php:32 #: airtime_mvc/application/services/HistoryService.php:1146 msgid "Start Time" -msgstr "" +msgstr "Begintijd" #: airtime_mvc/application/forms/EditHistoryItem.php:44 #: airtime_mvc/application/services/HistoryService.php:1147 msgid "End Time" -msgstr "" +msgstr "Eindtijd" #: airtime_mvc/application/forms/EditHistoryItem.php:57 #: airtime_mvc/application/controllers/LocaleController.php:389 #: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53 msgid "No Show" -msgstr "" +msgstr "geen show" #: airtime_mvc/application/forms/AddShowRR.php:10 msgid "Record from Line In?" -msgstr "" +msgstr "Opnemen vanaf de lijn In?" #: airtime_mvc/application/forms/AddShowRR.php:16 msgid "Rebroadcast?" -msgstr "" +msgstr "Rebroadcast?" #: airtime_mvc/application/forms/AddShowLiveStream.php:10 #, php-format msgid "Use %s Authentication:" -msgstr "" +msgstr "verificatie %s gebruiken:" #: airtime_mvc/application/forms/AddShowLiveStream.php:16 msgid "Use Custom Authentication:" -msgstr "" +msgstr "Gebruik aangepaste verificatie:" #: airtime_mvc/application/forms/AddShowLiveStream.php:26 msgid "Custom Username" -msgstr "" +msgstr "Aangepaste gebruikersnaam" #: airtime_mvc/application/forms/AddShowLiveStream.php:39 msgid "Custom Password" -msgstr "" +msgstr "Aangepaste wachtwoord" #: airtime_mvc/application/forms/AddShowLiveStream.php:63 msgid "Username field cannot be empty." -msgstr "" +msgstr "Veld Gebruikersnaam mag niet leeg." #: airtime_mvc/application/forms/AddShowLiveStream.php:68 msgid "Password field cannot be empty." -msgstr "" +msgstr "veld wachtwoord mag niet leeg." #: airtime_mvc/application/forms/PasswordRestore.php:14 msgid "E-mail" -msgstr "" +msgstr "E-mail" #: airtime_mvc/application/forms/PasswordRestore.php:36 msgid "Restore password" -msgstr "" +msgstr "Wachtwoord herstellen" #: airtime_mvc/application/forms/StreamSetting.php:22 msgid "Hardware Audio Output" -msgstr "" +msgstr "Hardware Audio lijn uit" #: airtime_mvc/application/forms/StreamSetting.php:33 msgid "Output Type" -msgstr "" +msgstr "Uitvoer Type" #: airtime_mvc/application/forms/StreamSetting.php:44 msgid "Icecast Vorbis Metadata" -msgstr "" +msgstr "Icecast Vorbis Metadata" #: airtime_mvc/application/forms/StreamSetting.php:54 msgid "Stream Label:" -msgstr "" +msgstr "Stream Label:" #: airtime_mvc/application/forms/StreamSetting.php:55 msgid "Artist - Title" -msgstr "" +msgstr "Artiest - Titel" #: airtime_mvc/application/forms/StreamSetting.php:56 msgid "Show - Artist - Title" -msgstr "" +msgstr "Show - Artiest - titel" #: airtime_mvc/application/forms/StreamSetting.php:57 msgid "Station name - Show name" -msgstr "" +msgstr "Station naam - Show naam" #: airtime_mvc/application/forms/StreamSetting.php:63 msgid "Off Air Metadata" -msgstr "" +msgstr "Off Air Metadata" #: airtime_mvc/application/forms/StreamSetting.php:69 msgid "Enable Replay Gain" -msgstr "" +msgstr "Inschakelen Replay Gain" #: airtime_mvc/application/forms/StreamSetting.php:75 msgid "Replay Gain Modifier" -msgstr "" +msgstr "Replay Gain Modifier" #: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 msgid "" "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "" +msgstr "'%value%' is geen geldig e-mailadres in de basis formaat lokale-onderdeel @ hostnaam" #: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 msgid "'%value%' does not fit the date format '%format%'" -msgstr "" +msgstr "'%value%' past niet in de datumnotatie '%format%'" #: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 msgid "'%value%' is less than %min% characters long" -msgstr "" +msgstr "'%value%' is minder dan %min% tekens lang" #: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 msgid "'%value%' is more than %max% characters long" -msgstr "" +msgstr "'%value%' is meer dan %max% karakters lang" #: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "" +msgstr "'%value%' is niet tussen '%min%' en '%max%', inclusief" #: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 msgid "Passwords do not match" -msgstr "" +msgstr "Wachtwoorden komen niet overeen." #: airtime_mvc/application/forms/AddShowWhen.php:16 msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "" +msgstr "'%value%' past niet de tijdnotatie 'UU:mm'" #: airtime_mvc/application/forms/AddShowWhen.php:22 msgid "Date/Time Start:" -msgstr "" +msgstr "datum/tijd start" #: airtime_mvc/application/forms/AddShowWhen.php:49 msgid "Date/Time End:" -msgstr "" +msgstr "datum/tijd einde" #: airtime_mvc/application/forms/AddShowWhen.php:74 msgid "Duration:" -msgstr "" +msgstr "Looptijd:" #: airtime_mvc/application/forms/AddShowWhen.php:83 msgid "Timezone:" -msgstr "" +msgstr "tijdzone:" #: airtime_mvc/application/forms/AddShowWhen.php:92 msgid "Repeats?" -msgstr "" +msgstr "herhaalt?" #: airtime_mvc/application/forms/AddShowWhen.php:124 msgid "Cannot create show in the past" -msgstr "" +msgstr "kan niet aanmaken show in het verleden weergeven" #: airtime_mvc/application/forms/AddShowWhen.php:132 msgid "Cannot modify start date/time of the show that is already started" -msgstr "" +msgstr "Start datum/tijd van de show die is al gestart wijzigen niet" #: airtime_mvc/application/forms/AddShowWhen.php:141 #: airtime_mvc/application/models/Show.php:278 msgid "End date/time cannot be in the past" -msgstr "" +msgstr "Eind datum/tijd mogen niet in het verleden" #: airtime_mvc/application/forms/AddShowWhen.php:149 msgid "Cannot have duration < 0m" -msgstr "" +msgstr "Geen duur hebben < 0m" #: airtime_mvc/application/forms/AddShowWhen.php:153 msgid "Cannot have duration 00h 00m" -msgstr "" +msgstr "Kan niet hebben duur 00h 00m" #: airtime_mvc/application/forms/AddShowWhen.php:160 msgid "Cannot have duration greater than 24h" -msgstr "" +msgstr "Duur groter is dan 24h kan niet hebben" #: airtime_mvc/application/forms/AddShowWhen.php:287 #: airtime_mvc/application/forms/AddShowWhen.php:301 @@ -1293,586 +1293,586 @@ msgstr "" #: airtime_mvc/application/forms/AddShowWhen.php:336 #: airtime_mvc/application/services/CalendarService.php:304 msgid "Cannot schedule overlapping shows" -msgstr "" +msgstr "kan Niet gepland overlappen shows" #: airtime_mvc/application/forms/AddShowWhat.php:26 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146 msgid "Name:" -msgstr "" +msgstr "naam" #: airtime_mvc/application/forms/AddShowWhat.php:30 msgid "Untitled Show" -msgstr "" +msgstr "Zonder titel show" #: airtime_mvc/application/forms/AddShowWhat.php:36 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150 msgid "URL:" -msgstr "" +msgstr "URL" #: airtime_mvc/application/forms/AddShowWhat.php:54 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149 msgid "Description:" -msgstr "" +msgstr "Omschrijving:" #: airtime_mvc/application/forms/SoundcloudPreferences.php:16 msgid "Automatically Upload Recorded Shows" -msgstr "" +msgstr "Automatisch uploaden opgenomen programma 's" #: airtime_mvc/application/forms/SoundcloudPreferences.php:26 msgid "Enable SoundCloud Upload" -msgstr "" +msgstr "SoundCloud uploaden inschakelen" #: airtime_mvc/application/forms/SoundcloudPreferences.php:36 msgid "Automatically Mark Files \"Downloadable\" on SoundCloud" -msgstr "" +msgstr "Automatisch markeren bestanden \"Downloadbare\" op SoundCloud" #: airtime_mvc/application/forms/SoundcloudPreferences.php:47 msgid "SoundCloud Email" -msgstr "" +msgstr "SoundCloud E-mail" #: airtime_mvc/application/forms/SoundcloudPreferences.php:67 msgid "SoundCloud Password" -msgstr "" +msgstr "SoundCloud wachtwoord" #: airtime_mvc/application/forms/SoundcloudPreferences.php:87 msgid "SoundCloud Tags: (separate tags with spaces)" -msgstr "" +msgstr "SoundCloud Tags: (tags scheiden met een spatie)" #: airtime_mvc/application/forms/SoundcloudPreferences.php:99 msgid "Default Genre:" -msgstr "" +msgstr "standaard genre:" #: airtime_mvc/application/forms/SoundcloudPreferences.php:109 msgid "Default Track Type:" -msgstr "" +msgstr "Standaard Track Type:" #: airtime_mvc/application/forms/SoundcloudPreferences.php:113 msgid "Original" -msgstr "" +msgstr "Origineel" #: airtime_mvc/application/forms/SoundcloudPreferences.php:114 msgid "Remix" -msgstr "" +msgstr "Remix" #: airtime_mvc/application/forms/SoundcloudPreferences.php:115 msgid "Live" -msgstr "" +msgstr "Live" #: airtime_mvc/application/forms/SoundcloudPreferences.php:116 msgid "Recording" -msgstr "" +msgstr "Opname" #: airtime_mvc/application/forms/SoundcloudPreferences.php:117 msgid "Spoken" -msgstr "" +msgstr "Mondeling" #: airtime_mvc/application/forms/SoundcloudPreferences.php:118 msgid "Podcast" -msgstr "" +msgstr "Podcast" #: airtime_mvc/application/forms/SoundcloudPreferences.php:119 msgid "Demo" -msgstr "" +msgstr "Demo" #: airtime_mvc/application/forms/SoundcloudPreferences.php:120 msgid "Work in progress" -msgstr "" +msgstr "Werk in uitvoering." #: airtime_mvc/application/forms/SoundcloudPreferences.php:121 msgid "Stem" -msgstr "" +msgstr "Stem" #: airtime_mvc/application/forms/SoundcloudPreferences.php:122 msgid "Loop" -msgstr "" +msgstr "Loop" #: airtime_mvc/application/forms/SoundcloudPreferences.php:123 msgid "Sound Effect" -msgstr "" +msgstr "Geluidseffect" #: airtime_mvc/application/forms/SoundcloudPreferences.php:124 msgid "One Shot Sample" -msgstr "" +msgstr "een Shot Sample" #: airtime_mvc/application/forms/SoundcloudPreferences.php:125 msgid "Other" -msgstr "" +msgstr "Anders" #: airtime_mvc/application/forms/SoundcloudPreferences.php:133 msgid "Default License:" -msgstr "" +msgstr "Standaard licentie:" #: airtime_mvc/application/forms/SoundcloudPreferences.php:137 msgid "The work is in the public domain" -msgstr "" +msgstr "Het werk bestaat uit het publieke domein" #: airtime_mvc/application/forms/SoundcloudPreferences.php:138 msgid "All rights are reserved" -msgstr "" +msgstr "Alle rechten voorbehouden" #: airtime_mvc/application/forms/SoundcloudPreferences.php:139 msgid "Creative Commons Attribution" -msgstr "" +msgstr "Creatief Commons Attribution" #: airtime_mvc/application/forms/SoundcloudPreferences.php:140 msgid "Creative Commons Attribution Noncommercial" -msgstr "" +msgstr "Creative Commons Attribution Noncommercial" #: airtime_mvc/application/forms/SoundcloudPreferences.php:141 msgid "Creative Commons Attribution No Derivative Works" -msgstr "" +msgstr "Creative Commons Naamsvermelding geen afgeleide werken" #: airtime_mvc/application/forms/SoundcloudPreferences.php:142 msgid "Creative Commons Attribution Share Alike" -msgstr "" +msgstr "Creative Commons Naamsvermelding Gelijk delen" #: airtime_mvc/application/forms/SoundcloudPreferences.php:143 msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "" +msgstr "Creative Commons Naamsvermelding nietcommerciële niet afgeleide werken" #: airtime_mvc/application/forms/SoundcloudPreferences.php:144 msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "" +msgstr "Creatief Meent Auteursvermelding niet-commerciële Deel Zowel" #: airtime_mvc/application/forms/EditUser.php:125 msgid "Interface Timezone:" -msgstr "" +msgstr "Interface tijdzone:" #: airtime_mvc/application/forms/EmailServerPreferences.php:17 msgid "Enable System Emails (Password Reset)" -msgstr "" +msgstr "Inschakelen systeem E-mails (Reset wachtwoord)" #: airtime_mvc/application/forms/EmailServerPreferences.php:27 msgid "Reset Password 'From' Email" -msgstr "" +msgstr "Reset wachtwoord 'Van' E-mail" #: airtime_mvc/application/forms/EmailServerPreferences.php:34 msgid "Configure Mail Server" -msgstr "" +msgstr "Configureer Mail Server" #: airtime_mvc/application/forms/EmailServerPreferences.php:43 msgid "Requires Authentication" -msgstr "" +msgstr "Is verificatie vereist" #: airtime_mvc/application/forms/EmailServerPreferences.php:53 msgid "Mail Server" -msgstr "" +msgstr "Mail Server" #: airtime_mvc/application/forms/EmailServerPreferences.php:67 msgid "Email Address" -msgstr "" +msgstr "E-mailadres" #: airtime_mvc/application/controllers/ListenerstatController.php:91 msgid "" "Please make sure admin user/password is correct on System->Streams page." -msgstr "" +msgstr "Controleer of admin gebruiker/wachtwoord klopt op systeem-> Streams pagina." #: airtime_mvc/application/controllers/WebstreamController.php:29 #: airtime_mvc/application/controllers/WebstreamController.php:33 msgid "Untitled Webstream" -msgstr "" +msgstr "Naamloze Webstream" #: airtime_mvc/application/controllers/WebstreamController.php:138 msgid "Webstream saved." -msgstr "" +msgstr "Webstream opgeslagen." #: airtime_mvc/application/controllers/WebstreamController.php:146 msgid "Invalid form values." -msgstr "" +msgstr "Ongeldige formulierwaarden." #: airtime_mvc/application/controllers/LoginController.php:35 msgid "Please enter your user name and password" -msgstr "" +msgstr "Voer uw gebruikersnaam en wachtwoord" #: airtime_mvc/application/controllers/LoginController.php:77 msgid "Wrong username or password provided. Please try again." -msgstr "" +msgstr "Onjuiste gebruikersnaam of wachtwoord opgegeven. Probeer het opnieuw." #: airtime_mvc/application/controllers/LoginController.php:145 msgid "" "Email could not be sent. Check your mail server settings and ensure it has " "been configured properly." -msgstr "" +msgstr "E-mail kan niet worden verzonden. Controleer de instellingen van uw e-mailserver en controleer dat goed is geconfigureerd." #: airtime_mvc/application/controllers/LoginController.php:148 msgid "Given email not found." -msgstr "" +msgstr "Bepaalde e-mail niet gevonden." #: airtime_mvc/application/controllers/ScheduleController.php:350 #, php-format msgid "Rebroadcast of show %s from %s at %s" -msgstr "" +msgstr "Rebroadcast van show %s van %s in %s" #: airtime_mvc/application/controllers/ScheduleController.php:624 #: airtime_mvc/application/controllers/LibraryController.php:222 msgid "Download" -msgstr "" +msgstr "Download" #: airtime_mvc/application/controllers/UserController.php:76 msgid "User added successfully!" -msgstr "" +msgstr "gebruiker Succesvol Toegevoegd" #: airtime_mvc/application/controllers/UserController.php:78 msgid "User updated successfully!" -msgstr "" +msgstr "gebruiker Succesvol bijgewerkt" #: airtime_mvc/application/controllers/UserController.php:148 msgid "Settings updated successfully!" -msgstr "" +msgstr "Instellingen met succes bijgewerkt!" #: airtime_mvc/application/controllers/ErrorController.php:17 msgid "Page not found" -msgstr "" +msgstr "Pagina niet gevonden" #: airtime_mvc/application/controllers/ErrorController.php:22 msgid "Application error" -msgstr "" +msgstr "Applicatiefout" #: airtime_mvc/application/controllers/LocaleController.php:30 msgid "Recording:" -msgstr "" +msgstr "Opname" #: airtime_mvc/application/controllers/LocaleController.php:31 msgid "Master Stream" -msgstr "" +msgstr "Master Stream" #: airtime_mvc/application/controllers/LocaleController.php:32 msgid "Live Stream" -msgstr "" +msgstr "Live stream" #: airtime_mvc/application/controllers/LocaleController.php:33 msgid "Nothing Scheduled" -msgstr "" +msgstr "Niets gepland" #: airtime_mvc/application/controllers/LocaleController.php:34 msgid "Current Show:" -msgstr "" +msgstr "Huidige Show:" #: airtime_mvc/application/controllers/LocaleController.php:35 msgid "Current" -msgstr "" +msgstr "Huidige" #: airtime_mvc/application/controllers/LocaleController.php:37 msgid "You are running the latest version" -msgstr "" +msgstr "U werkt de meest recente versie" #: airtime_mvc/application/controllers/LocaleController.php:38 msgid "New version available: " -msgstr "" +msgstr "Nieuwe versie beschikbaar:" #: airtime_mvc/application/controllers/LocaleController.php:39 msgid "This version will soon be obsolete." -msgstr "" +msgstr "Deze versie zal binnenkort verouderd." #: airtime_mvc/application/controllers/LocaleController.php:40 msgid "This version is no longer supported." -msgstr "" +msgstr "Deze versie wordt niet langer ondersteund." #: airtime_mvc/application/controllers/LocaleController.php:41 msgid "Please upgrade to " -msgstr "" +msgstr "Gelieve te upgraden naar" #: airtime_mvc/application/controllers/LocaleController.php:43 msgid "Add to current playlist" -msgstr "" +msgstr "Toevoegen aan huidige afspeellijst" #: airtime_mvc/application/controllers/LocaleController.php:44 msgid "Add to current smart block" -msgstr "" +msgstr "Toevoegen aan huidigeslimme block" #: airtime_mvc/application/controllers/LocaleController.php:45 msgid "Adding 1 Item" -msgstr "" +msgstr "1 Item toevoegen" #: airtime_mvc/application/controllers/LocaleController.php:46 #, php-format msgid "Adding %s Items" -msgstr "" +msgstr "%s Items toe te voegen" #: airtime_mvc/application/controllers/LocaleController.php:47 msgid "You can only add tracks to smart blocks." -msgstr "" +msgstr "U kunt alleen nummers naar slimme blokken toevoegen." #: airtime_mvc/application/controllers/LocaleController.php:48 #: airtime_mvc/application/controllers/PlaylistController.php:163 msgid "You can only add tracks, smart blocks, and webstreams to playlists." -msgstr "" +msgstr "U kunt alleen nummers, slimme blokken en webstreams toevoegen aan afspeellijsten." #: airtime_mvc/application/controllers/LocaleController.php:51 msgid "Please select a cursor position on timeline." -msgstr "" +msgstr "Selecteer een cursorpositie op de tijdlijn." #: airtime_mvc/application/controllers/LocaleController.php:55 #: airtime_mvc/application/controllers/LibraryController.php:218 msgid "Edit Metadata" -msgstr "" +msgstr "Metagegevens bewerken" #: airtime_mvc/application/controllers/LocaleController.php:56 msgid "Add to selected show" -msgstr "" +msgstr "Toevoegen aan geselecteerde Toon" #: airtime_mvc/application/controllers/LocaleController.php:57 msgid "Select" -msgstr "" +msgstr "Selecteer" #: airtime_mvc/application/controllers/LocaleController.php:58 msgid "Select this page" -msgstr "" +msgstr "Selecteer deze pagina" #: airtime_mvc/application/controllers/LocaleController.php:59 msgid "Deselect this page" -msgstr "" +msgstr "Hef de selectie van deze pagina" #: airtime_mvc/application/controllers/LocaleController.php:60 msgid "Deselect all" -msgstr "" +msgstr "Alle selecties opheffen" #: airtime_mvc/application/controllers/LocaleController.php:61 msgid "Are you sure you want to delete the selected item(s)?" -msgstr "" +msgstr "Weet u zeker dat u wilt verwijderen van de geselecteerde bestand(en)?" #: airtime_mvc/application/controllers/LocaleController.php:62 msgid "Scheduled" -msgstr "" +msgstr "Gepland" #: airtime_mvc/application/controllers/LocaleController.php:63 msgid "Playlist / Block" -msgstr "" +msgstr "playlist / blokken" #: airtime_mvc/application/controllers/LocaleController.php:67 msgid "Bit Rate" -msgstr "" +msgstr "Bit Rate" #: airtime_mvc/application/controllers/LocaleController.php:84 msgid "Sample Rate" -msgstr "" +msgstr "Sample Rate" #: airtime_mvc/application/controllers/LocaleController.php:89 msgid "Loading..." -msgstr "" +msgstr "Bezig met laden..." #: airtime_mvc/application/controllers/LocaleController.php:90 #: airtime_mvc/application/controllers/LocaleController.php:390 msgid "All" -msgstr "" +msgstr "Alle" #: airtime_mvc/application/controllers/LocaleController.php:91 msgid "Files" -msgstr "" +msgstr "Bestanden" #: airtime_mvc/application/controllers/LocaleController.php:92 msgid "Playlists" -msgstr "" +msgstr "Afspeellijsten" #: airtime_mvc/application/controllers/LocaleController.php:93 msgid "Smart Blocks" -msgstr "" +msgstr "slimme blokken" #: airtime_mvc/application/controllers/LocaleController.php:94 msgid "Web Streams" -msgstr "" +msgstr "Web Streams" #: airtime_mvc/application/controllers/LocaleController.php:95 msgid "Unknown type: " -msgstr "" +msgstr "Onbekend type" #: airtime_mvc/application/controllers/LocaleController.php:96 msgid "Are you sure you want to delete the selected item?" -msgstr "" +msgstr "Wilt u de geselecteerde gegevens werkelijk verwijderen?" #: airtime_mvc/application/controllers/LocaleController.php:97 #: airtime_mvc/application/controllers/LocaleController.php:198 msgid "Uploading in progress..." -msgstr "" +msgstr "Uploaden in vooruitgang..." #: airtime_mvc/application/controllers/LocaleController.php:98 msgid "Retrieving data from the server..." -msgstr "" +msgstr "Gegevens op te halen van de server..." #: airtime_mvc/application/controllers/LocaleController.php:99 msgid "The soundcloud id for this file is: " -msgstr "" +msgstr "De soundcloud id voor dit bestand is:" #: airtime_mvc/application/controllers/LocaleController.php:100 msgid "There was an error while uploading to soundcloud." -msgstr "" +msgstr "Er is een fout opgetreden bij het uploaden naar soundcloud." #: airtime_mvc/application/controllers/LocaleController.php:101 msgid "Error code: " -msgstr "" +msgstr "foutcode" #: airtime_mvc/application/controllers/LocaleController.php:102 msgid "Error msg: " -msgstr "" +msgstr "Fout msg:" #: airtime_mvc/application/controllers/LocaleController.php:103 msgid "Input must be a positive number" -msgstr "" +msgstr "Invoer moet een positief getal" #: airtime_mvc/application/controllers/LocaleController.php:104 msgid "Input must be a number" -msgstr "" +msgstr "Invoer moet een getal" #: airtime_mvc/application/controllers/LocaleController.php:105 msgid "Input must be in the format: yyyy-mm-dd" -msgstr "" +msgstr "Invoer moet worden in de indeling: jjjj-mm-dd" #: airtime_mvc/application/controllers/LocaleController.php:106 msgid "Input must be in the format: hh:mm:ss.t" -msgstr "" +msgstr "Invoer moet worden in het formaat: hh:mm:ss.t" #: airtime_mvc/application/controllers/LocaleController.php:109 #, 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 "" +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?" #: airtime_mvc/application/controllers/LocaleController.php:111 msgid "Open Media Builder" -msgstr "" +msgstr "Open Media opbouw" #: airtime_mvc/application/controllers/LocaleController.php:112 msgid "please put in a time '00:00:00 (.0)'" -msgstr "" +msgstr "Gelieve te zetten in een tijd '00:00 (.0)'" #: airtime_mvc/application/controllers/LocaleController.php:113 msgid "please put in a time in seconds '00 (.0)'" -msgstr "" +msgstr "Gelieve te zetten in een tijd in seconden '00 (.0)'" #: airtime_mvc/application/controllers/LocaleController.php:114 msgid "Your browser does not support playing this file type: " -msgstr "" +msgstr "Uw browser biedt geen ondersteuning voor het spelen van dit bestandstype:" #: airtime_mvc/application/controllers/LocaleController.php:115 msgid "Dynamic block is not previewable" -msgstr "" +msgstr "Dynamische blok is niet previewable" #: airtime_mvc/application/controllers/LocaleController.php:116 msgid "Limit to: " -msgstr "" +msgstr "Beperk tot:" #: airtime_mvc/application/controllers/LocaleController.php:117 msgid "Playlist saved" -msgstr "" +msgstr "Afspeellijst opgeslagen" #: airtime_mvc/application/controllers/LocaleController.php:118 msgid "Playlist shuffled" -msgstr "" +msgstr "Afspeellijst geschud" #: airtime_mvc/application/controllers/LocaleController.php:120 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 "" +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." #: airtime_mvc/application/controllers/LocaleController.php:122 #, php-format msgid "Listener Count on %s: %s" -msgstr "" +msgstr "Luisteraar rekenen op %s: %s" #: airtime_mvc/application/controllers/LocaleController.php:124 msgid "Remind me in 1 week" -msgstr "" +msgstr "Stuur me een herinnering in 1 week" #: airtime_mvc/application/controllers/LocaleController.php:125 msgid "Remind me never" -msgstr "" +msgstr "Herinner me nooit" #: airtime_mvc/application/controllers/LocaleController.php:126 msgid "Yes, help Airtime" -msgstr "" +msgstr "Ja, help Airtime" #: airtime_mvc/application/controllers/LocaleController.php:127 #: airtime_mvc/application/controllers/LocaleController.php:176 msgid "Image must be one of jpg, jpeg, png, or gif" -msgstr "" +msgstr "Afbeelding moet een van jpg, jpeg, png of gif" #: airtime_mvc/application/controllers/LocaleController.php:130 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 "" +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." #: airtime_mvc/application/controllers/LocaleController.php:132 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 "" +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." #: airtime_mvc/application/controllers/LocaleController.php:134 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 "" +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." #: airtime_mvc/application/controllers/LocaleController.php:135 msgid "Smart block shuffled" -msgstr "" +msgstr "slimme blok geschud" #: airtime_mvc/application/controllers/LocaleController.php:136 msgid "Smart block generated and criteria saved" -msgstr "" +msgstr "slimme blok gegenereerd en opgeslagen criteria" #: airtime_mvc/application/controllers/LocaleController.php:137 msgid "Smart block saved" -msgstr "" +msgstr "Smart blok opgeslagen" #: airtime_mvc/application/controllers/LocaleController.php:138 msgid "Processing..." -msgstr "" +msgstr "Wordt verwerkt..." #: airtime_mvc/application/controllers/LocaleController.php:150 msgid "Choose Storage Folder" -msgstr "" +msgstr "Kies opslagmap" #: airtime_mvc/application/controllers/LocaleController.php:151 msgid "Choose Folder to Watch" -msgstr "" +msgstr "Kies map voor bewaken" #: airtime_mvc/application/controllers/LocaleController.php:153 msgid "" "Are you sure you want to change the storage folder?\n" "This will remove the files from your Airtime library!" -msgstr "" +msgstr "Weet u zeker dat u wilt wijzigen de opslagmap?\nHiermee verwijdert u de bestanden uit uw Airtime bibliotheek!" #: airtime_mvc/application/controllers/LocaleController.php:154 #: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2 msgid "Manage Media Folders" -msgstr "" +msgstr "Mediamappen beheren" #: airtime_mvc/application/controllers/LocaleController.php:155 msgid "Are you sure you want to remove the watched folder?" -msgstr "" +msgstr "Weet u zeker dat u wilt verwijderen van de gecontroleerde map?" #: airtime_mvc/application/controllers/LocaleController.php:156 msgid "This path is currently not accessible." -msgstr "" +msgstr "Dit pad is momenteel niet toegankelijk." #: airtime_mvc/application/controllers/LocaleController.php:158 #, php-format msgid "" "Some stream types require extra configuration. Details about enabling %sAAC+" " Support%s or %sOpus Support%s are provided." -msgstr "" +msgstr "Sommige typen stream vereist extra configuratie. Details over het inschakelen van %sAAC + ondersteunt %s of %sOpus %s steun worden verstrekt." #: airtime_mvc/application/controllers/LocaleController.php:159 msgid "Connected to the streaming server" -msgstr "" +msgstr "Aangesloten op de streaming server" #: airtime_mvc/application/controllers/LocaleController.php:160 msgid "The stream is disabled" -msgstr "" +msgstr "De stream is uitgeschakeld" #: airtime_mvc/application/controllers/LocaleController.php:162 msgid "Can not connect to the streaming server" -msgstr "" +msgstr "Kan geen verbinding maken met de streaming server" #: airtime_mvc/application/controllers/LocaleController.php:164 msgid "" @@ -1881,12 +1881,12 @@ msgid "" "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 "" +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." #: airtime_mvc/application/controllers/LocaleController.php:165 #, php-format msgid "For more details, please read the %sAirtime Manual%s" -msgstr "" +msgstr "Voor meer informatie, lees de %sAirtime handleiding%s" #: airtime_mvc/application/controllers/LocaleController.php:167 msgid "" @@ -1897,32 +1897,32 @@ msgid "" " 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 "" +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." #: airtime_mvc/application/controllers/LocaleController.php:168 msgid "" "Check this box to automatically switch off Master/Show source upon source " "disconnection." -msgstr "" +msgstr "Dit selectievakje automatisch uit te schakelen Master/Toon bron op bron verbreking van de aansluiting." #: airtime_mvc/application/controllers/LocaleController.php:169 msgid "" "Check this box to automatically switch on Master/Show source upon source " "connection." -msgstr "" +msgstr "Dit selectievakje automatisch uit te schakelen Master/Toon bron op bron verbreking van de aansluiting." #: airtime_mvc/application/controllers/LocaleController.php:170 msgid "" "If your Icecast server expects a username of 'source', this field can be " "left blank." -msgstr "" +msgstr "Als uw Icecast server verwacht een gebruikersnaam van 'Bron', kan dit veld leeg worden gelaten." #: airtime_mvc/application/controllers/LocaleController.php:171 #: airtime_mvc/application/controllers/LocaleController.php:182 msgid "" "If your live streaming client does not ask for a username, this field should" " be 'source'." -msgstr "" +msgstr "Als je live streaming client niet om een gebruikersnaam vraagt, moet dit veld 'Bron'." #: airtime_mvc/application/controllers/LocaleController.php:173 msgid "" @@ -1933,236 +1933,236 @@ msgid "" " Master Password (Input Stream Settings). If Airtime is recording, and if " "the change causes a playout engine restart, the recording will be " "interrupted." -msgstr "" +msgstr "Als u de waarden van de gebruikersnaam of het wachtwoord wijzigt voor een ingeschakelde stream de playout motor opnieuw zal worden opgestart en uw luisteraars stilte voor 5-10 seconden zal horen. De volgende velden wijzigen zal niet leiden tot een reboot: Stream Label (algemene instellingen), en Switch overgang Fade(s), Master gebruikersnaam en hoofdwachtwoord (Input Stream instellingen). Als Airtime opneemt, en als de verandering veroorzaakt een playout motor herstart, zal de opname worden onderbroken." #: airtime_mvc/application/controllers/LocaleController.php:174 msgid "" "This is the admin username and password for Icecast/SHOUTcast to get " "listener statistics." -msgstr "" +msgstr "Dit is de admin gebuiker en wachtwoord voor Icecast/SHOUTcast om luisteraar statistieken." #: airtime_mvc/application/controllers/LocaleController.php:178 msgid "" "Warning: You cannot change this field while the show is currently playing" -msgstr "" +msgstr "Waarschuwing: U het veld niet wijzigen terwijl de show is momenteel aan het spelen" #: airtime_mvc/application/controllers/LocaleController.php:179 msgid "No result found" -msgstr "" +msgstr "Geen resultaat gevonden" #: airtime_mvc/application/controllers/LocaleController.php:180 msgid "" "This follows the same security pattern for the shows: only users assigned to" " the show can connect." -msgstr "" +msgstr "Dit volgt op de dezelfde beveiliging-patroon voor de shows: alleen gebruikers die zijn toegewezen aan de show verbinding kunnen maken." #: airtime_mvc/application/controllers/LocaleController.php:181 msgid "Specify custom authentication which will work only for this show." -msgstr "" +msgstr "Geef aangepaste verificatie die alleen voor deze show werken zal." #: airtime_mvc/application/controllers/LocaleController.php:183 msgid "The show instance doesn't exist anymore!" -msgstr "" +msgstr "De Toon-exemplaar bestaat niet meer!" #: airtime_mvc/application/controllers/LocaleController.php:184 msgid "Warning: Shows cannot be re-linked" -msgstr "" +msgstr "Waarschuwing: Shows kunnen niet opnieuw gekoppelde" #: airtime_mvc/application/controllers/LocaleController.php:185 msgid "" "By linking your repeating shows any media items scheduled in any repeat show" " will also get scheduled in the other repeat shows" -msgstr "" +msgstr "Door het koppelen van toont uw herhalende alle media objecten later in elke herhaling show zal ook krijgen gepland in andere herhalen shows" #: airtime_mvc/application/controllers/LocaleController.php:186 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 "" +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." #: airtime_mvc/application/controllers/LocaleController.php:190 msgid "Show" -msgstr "" +msgstr "Show" #: airtime_mvc/application/controllers/LocaleController.php:191 msgid "Show is empty" -msgstr "" +msgstr "Show Is leeg" #: airtime_mvc/application/controllers/LocaleController.php:192 msgid "1m" -msgstr "" +msgstr "1m" #: airtime_mvc/application/controllers/LocaleController.php:193 msgid "5m" -msgstr "" +msgstr "5m" #: airtime_mvc/application/controllers/LocaleController.php:194 msgid "10m" -msgstr "" +msgstr "10m" #: airtime_mvc/application/controllers/LocaleController.php:195 msgid "15m" -msgstr "" +msgstr "15m" #: airtime_mvc/application/controllers/LocaleController.php:196 msgid "30m" -msgstr "" +msgstr "30m" #: airtime_mvc/application/controllers/LocaleController.php:197 msgid "60m" -msgstr "" +msgstr "60m" #: airtime_mvc/application/controllers/LocaleController.php:199 msgid "Retreiving data from the server..." -msgstr "" +msgstr "Retreiving gegevens van de server..." #: airtime_mvc/application/controllers/LocaleController.php:205 msgid "This show has no scheduled content." -msgstr "" +msgstr "Deze show heeft geen geplande inhoud." #: airtime_mvc/application/controllers/LocaleController.php:206 msgid "This show is not completely filled with content." -msgstr "" +msgstr "Deze show is niet volledig gevuld met inhoud." #: airtime_mvc/application/controllers/LocaleController.php:210 msgid "January" -msgstr "" +msgstr "Januari" #: airtime_mvc/application/controllers/LocaleController.php:211 msgid "February" -msgstr "" +msgstr "Februari" #: airtime_mvc/application/controllers/LocaleController.php:212 msgid "March" -msgstr "" +msgstr "maart" #: airtime_mvc/application/controllers/LocaleController.php:213 msgid "April" -msgstr "" +msgstr "april" #: airtime_mvc/application/controllers/LocaleController.php:214 #: airtime_mvc/application/controllers/LocaleController.php:226 msgid "May" -msgstr "" +msgstr "mei" #: airtime_mvc/application/controllers/LocaleController.php:215 msgid "June" -msgstr "" +msgstr "juni" #: airtime_mvc/application/controllers/LocaleController.php:216 msgid "July" -msgstr "" +msgstr "juli" #: airtime_mvc/application/controllers/LocaleController.php:217 msgid "August" -msgstr "" +msgstr "augustus" #: airtime_mvc/application/controllers/LocaleController.php:218 msgid "September" -msgstr "" +msgstr "september" #: airtime_mvc/application/controllers/LocaleController.php:219 msgid "October" -msgstr "" +msgstr "oktober" #: airtime_mvc/application/controllers/LocaleController.php:220 msgid "November" -msgstr "" +msgstr "november" #: airtime_mvc/application/controllers/LocaleController.php:221 msgid "December" -msgstr "" +msgstr "december" #: airtime_mvc/application/controllers/LocaleController.php:222 msgid "Jan" -msgstr "" +msgstr "jan" #: airtime_mvc/application/controllers/LocaleController.php:223 msgid "Feb" -msgstr "" +msgstr "feb" #: airtime_mvc/application/controllers/LocaleController.php:224 msgid "Mar" -msgstr "" +msgstr "maa" #: airtime_mvc/application/controllers/LocaleController.php:225 msgid "Apr" -msgstr "" +msgstr "apr" #: airtime_mvc/application/controllers/LocaleController.php:227 msgid "Jun" -msgstr "" +msgstr "jun" #: airtime_mvc/application/controllers/LocaleController.php:228 msgid "Jul" -msgstr "" +msgstr "jul" #: airtime_mvc/application/controllers/LocaleController.php:229 msgid "Aug" -msgstr "" +msgstr "aug" #: airtime_mvc/application/controllers/LocaleController.php:230 msgid "Sep" -msgstr "" +msgstr "sep" #: airtime_mvc/application/controllers/LocaleController.php:231 msgid "Oct" -msgstr "" +msgstr "okt" #: airtime_mvc/application/controllers/LocaleController.php:232 msgid "Nov" -msgstr "" +msgstr "nov" #: airtime_mvc/application/controllers/LocaleController.php:233 msgid "Dec" -msgstr "" +msgstr "dec" #: airtime_mvc/application/controllers/LocaleController.php:234 msgid "today" -msgstr "" +msgstr "vandaag" #: airtime_mvc/application/controllers/LocaleController.php:235 msgid "day" -msgstr "" +msgstr "dag" #: airtime_mvc/application/controllers/LocaleController.php:236 msgid "week" -msgstr "" +msgstr "week" #: airtime_mvc/application/controllers/LocaleController.php:237 msgid "month" -msgstr "" +msgstr "maand" #: airtime_mvc/application/controllers/LocaleController.php:252 msgid "" "Shows longer than their scheduled time will be cut off by a following show." -msgstr "" +msgstr "Toont meer dan de geplande tijd onbereikbaar worden door een volgende voorstelling." #: airtime_mvc/application/controllers/LocaleController.php:253 msgid "Cancel Current Show?" -msgstr "" +msgstr "Annuleer Huidige Show?" #: airtime_mvc/application/controllers/LocaleController.php:254 #: airtime_mvc/application/controllers/LocaleController.php:298 msgid "Stop recording current show?" -msgstr "" +msgstr "Stop de opname huidige show?" #: airtime_mvc/application/controllers/LocaleController.php:255 msgid "Ok" -msgstr "" +msgstr "oke" #: airtime_mvc/application/controllers/LocaleController.php:256 msgid "Contents of Show" -msgstr "" +msgstr "Inhoud van Show" #: airtime_mvc/application/controllers/LocaleController.php:259 msgid "Remove all content?" -msgstr "" +msgstr "Alle inhoud verwijderen?" #: airtime_mvc/application/controllers/LocaleController.php:261 msgid "Delete selected item(s)?" -msgstr "" +msgstr "verwijderd geselecteerd object(en)?" #: airtime_mvc/application/controllers/LocaleController.php:262 #: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5 @@ -2171,87 +2171,87 @@ msgstr "Start" #: airtime_mvc/application/controllers/LocaleController.php:263 msgid "End" -msgstr "" +msgstr "einde" #: airtime_mvc/application/controllers/LocaleController.php:264 msgid "Duration" -msgstr "" +msgstr "Duur" #: airtime_mvc/application/controllers/LocaleController.php:274 msgid "Show Empty" -msgstr "" +msgstr "Show leeg" #: airtime_mvc/application/controllers/LocaleController.php:275 msgid "Recording From Line In" -msgstr "" +msgstr "Opname van de Line In" #: airtime_mvc/application/controllers/LocaleController.php:276 msgid "Track preview" -msgstr "" +msgstr "Track Voorbeeld" #: airtime_mvc/application/controllers/LocaleController.php:280 msgid "Cannot schedule outside a show." -msgstr "" +msgstr "Niet gepland buiten een show." #: airtime_mvc/application/controllers/LocaleController.php:281 msgid "Moving 1 Item" -msgstr "" +msgstr "1 Item verplaatsen" #: airtime_mvc/application/controllers/LocaleController.php:282 #, php-format msgid "Moving %s Items" -msgstr "" +msgstr "%s Items verplaatsen" #: airtime_mvc/application/controllers/LocaleController.php:285 msgid "Fade Editor" -msgstr "" +msgstr "Fade Bewerken" #: airtime_mvc/application/controllers/LocaleController.php:286 msgid "Cue Editor" -msgstr "" +msgstr "Cue Bewerken" #: airtime_mvc/application/controllers/LocaleController.php:287 msgid "" "Waveform features are available in a browser supporting the Web Audio API" -msgstr "" +msgstr "Waveform functies zijn beschikbaar in een browser die ondersteuning van de Web Audio API" #: airtime_mvc/application/controllers/LocaleController.php:290 msgid "Select all" -msgstr "" +msgstr "Selecteer alles" #: airtime_mvc/application/controllers/LocaleController.php:291 msgid "Select none" -msgstr "" +msgstr "Niets selecteren" #: airtime_mvc/application/controllers/LocaleController.php:292 msgid "Remove overbooked tracks" -msgstr "" +msgstr "Verwijderen overboekte tracks" #: airtime_mvc/application/controllers/LocaleController.php:293 msgid "Remove selected scheduled items" -msgstr "" +msgstr "Geselecteerde geplande items verwijderen" #: airtime_mvc/application/controllers/LocaleController.php:294 msgid "Jump to the current playing track" -msgstr "" +msgstr "Jump naar de huidige playing track" #: airtime_mvc/application/controllers/LocaleController.php:295 msgid "Cancel current show" -msgstr "" +msgstr "Annuleren van de huidige show" #: airtime_mvc/application/controllers/LocaleController.php:300 msgid "Open library to add or remove content" -msgstr "" +msgstr "Open bibliotheek toevoegen of verwijderen van inhoud" #: airtime_mvc/application/controllers/LocaleController.php:301 #: airtime_mvc/application/views/scripts/showbuilder/index.phtml:15 #: airtime_mvc/application/services/CalendarService.php:96 msgid "Add / Remove Content" -msgstr "" +msgstr "Toevoegen / verwijderen van inhoud" #: airtime_mvc/application/controllers/LocaleController.php:303 msgid "in use" -msgstr "" +msgstr "In gebruik" #: airtime_mvc/application/controllers/LocaleController.php:304 msgid "Disk" @@ -2259,7 +2259,7 @@ msgstr "hardeschijf" #: airtime_mvc/application/controllers/LocaleController.php:306 msgid "Look in" -msgstr "" +msgstr "Zoeken in:" #: airtime_mvc/application/controllers/LocaleController.php:308 msgid "Open" @@ -2271,19 +2271,19 @@ msgstr "Gasten kunnen het volgende doen:" #: airtime_mvc/application/controllers/LocaleController.php:315 msgid "View schedule" -msgstr "" +msgstr "Schema weergeven" #: airtime_mvc/application/controllers/LocaleController.php:316 msgid "View show content" -msgstr "" +msgstr "Weergave show content" #: airtime_mvc/application/controllers/LocaleController.php:317 msgid "DJs can do the following:" -msgstr "" +msgstr "DJ's kunnen het volgende doen:" #: airtime_mvc/application/controllers/LocaleController.php:318 msgid "Manage assigned show content" -msgstr "" +msgstr "Toegewezen Toon inhoud beheren" #: airtime_mvc/application/controllers/LocaleController.php:319 msgid "Import media files" @@ -2291,43 +2291,43 @@ msgstr "Mediabestanden importeren" #: airtime_mvc/application/controllers/LocaleController.php:320 msgid "Create playlists, smart blocks, and webstreams" -msgstr "" +msgstr "Maak afspeellijsten, slimme blokken en webstreams" #: airtime_mvc/application/controllers/LocaleController.php:321 msgid "Manage their own library content" -msgstr "" +msgstr "De inhoud van hun eigen bibliotheek beheren" #: airtime_mvc/application/controllers/LocaleController.php:322 msgid "Progam Managers can do the following:" -msgstr "" +msgstr "Programa Managers kunnen het volgende doen:" #: airtime_mvc/application/controllers/LocaleController.php:323 msgid "View and manage show content" -msgstr "" +msgstr "Bekijken en beheren van inhoud weergeven" #: airtime_mvc/application/controllers/LocaleController.php:324 msgid "Schedule shows" -msgstr "" +msgstr "Schema shows" #: airtime_mvc/application/controllers/LocaleController.php:325 msgid "Manage all library content" -msgstr "" +msgstr "Alle inhoud van de bibliotheek beheren" #: airtime_mvc/application/controllers/LocaleController.php:326 msgid "Admins can do the following:" -msgstr "" +msgstr "Beheerders kunnen het volgende doen:" #: airtime_mvc/application/controllers/LocaleController.php:327 msgid "Manage preferences" -msgstr "" +msgstr "Voorkeuren beheren" #: airtime_mvc/application/controllers/LocaleController.php:328 msgid "Manage users" -msgstr "" +msgstr "Gebruikers beheren" #: airtime_mvc/application/controllers/LocaleController.php:329 msgid "Manage watched folders" -msgstr "" +msgstr "Bewaakte mappen beheren" #: airtime_mvc/application/controllers/LocaleController.php:331 msgid "View system status" @@ -2335,11 +2335,11 @@ msgstr "Bekijk systeem status" #: airtime_mvc/application/controllers/LocaleController.php:332 msgid "Access playout history" -msgstr "" +msgstr "Toegang playout geschiedenis" #: airtime_mvc/application/controllers/LocaleController.php:333 msgid "View listener stats" -msgstr "" +msgstr "Weergave luisteraar stats" #: airtime_mvc/application/controllers/LocaleController.php:335 msgid "Show / hide columns" @@ -2355,11 +2355,11 @@ msgstr "kbps" #: airtime_mvc/application/controllers/LocaleController.php:339 msgid "yyyy-mm-dd" -msgstr "" +msgstr "jjjj-mm-dd" #: airtime_mvc/application/controllers/LocaleController.php:340 msgid "hh:mm:ss.t" -msgstr "" +msgstr "hh:mm:ss.t" #: airtime_mvc/application/controllers/LocaleController.php:341 msgid "kHz" @@ -2447,11 +2447,11 @@ msgstr "Bestanden toevoegen" #: airtime_mvc/application/controllers/LocaleController.php:367 #, php-format msgid "Uploaded %d/%d files" -msgstr "" +msgstr "Geüploade %d/%d bestanden" #: airtime_mvc/application/controllers/LocaleController.php:368 msgid "N/A" -msgstr "" +msgstr "N/B" #: airtime_mvc/application/controllers/LocaleController.php:369 msgid "Drag files here." @@ -2467,11 +2467,11 @@ msgstr "Bestandsgrote fout." #: airtime_mvc/application/controllers/LocaleController.php:372 msgid "File count error." -msgstr "" +msgstr "Graaf bestandsfout." #: airtime_mvc/application/controllers/LocaleController.php:373 msgid "Init error." -msgstr "" +msgstr "Init fout." #: airtime_mvc/application/controllers/LocaleController.php:374 msgid "HTTP Error." @@ -2487,7 +2487,7 @@ msgstr "Generieke fout." #: airtime_mvc/application/controllers/LocaleController.php:377 msgid "IO error." -msgstr "" +msgstr "IO fout." #: airtime_mvc/application/controllers/LocaleController.php:378 #, php-format @@ -2497,15 +2497,15 @@ msgstr "Bestand: %s" #: airtime_mvc/application/controllers/LocaleController.php:380 #, php-format msgid "%d files queued" -msgstr "" +msgstr "%d bestanden in de wachtrij" #: airtime_mvc/application/controllers/LocaleController.php:381 msgid "File: %f, size: %s, max file size: %m" -msgstr "" +msgstr "File: %f, grootte: %s, max bestandsgrootte: %m" #: airtime_mvc/application/controllers/LocaleController.php:382 msgid "Upload URL might be wrong or doesn't exist" -msgstr "" +msgstr "Upload URL zou verkeerd kunnen zijn of bestaat niet" #: airtime_mvc/application/controllers/LocaleController.php:383 msgid "Error: File too large: " @@ -2519,87 +2519,87 @@ msgstr "Fout: Niet toegestane bestandsextensie " #: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:25 #: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:56 msgid "Set Default" -msgstr "" +msgstr "Standaard instellen" #: airtime_mvc/application/controllers/LocaleController.php:387 msgid "Create Entry" -msgstr "" +msgstr "Aangemaakt op:" #: airtime_mvc/application/controllers/LocaleController.php:388 msgid "Edit History Record" -msgstr "" +msgstr "Geschiedenis Record bewerken" #: airtime_mvc/application/controllers/LocaleController.php:391 #, php-format msgid "Copied %s row%s to the clipboard" -msgstr "" +msgstr "Rij gekopieerde %s %s naar het Klembord" #: airtime_mvc/application/controllers/LocaleController.php:392 #, php-format msgid "" "%sPrint view%sPlease use your browser's print function to print this table. " "Press escape when finished." -msgstr "" +msgstr "%sPrint weergave%sA.u.b. gebruik printfunctie in uw browser wilt afdrukken van deze tabel. Druk op ESC wanneer u klaar bent." #: airtime_mvc/application/controllers/DashboardController.php:36 #: airtime_mvc/application/controllers/DashboardController.php:85 msgid "You don't have permission to disconnect source." -msgstr "" +msgstr "Je hebt geen toestemming om te bron verbreken" #: airtime_mvc/application/controllers/DashboardController.php:38 #: airtime_mvc/application/controllers/DashboardController.php:87 msgid "There is no source connected to this input." -msgstr "" +msgstr "Er is geen bron die aangesloten op deze ingang." #: airtime_mvc/application/controllers/DashboardController.php:82 msgid "You don't have permission to switch source." -msgstr "" +msgstr "Je hebt geen toestemming om over te schakelen van de bron." #: airtime_mvc/application/controllers/PlaylistController.php:48 #, php-format msgid "You are viewing an older version of %s" -msgstr "" +msgstr "U bekijkt een oudere versie van %s" #: airtime_mvc/application/controllers/PlaylistController.php:123 msgid "You cannot add tracks to dynamic blocks." -msgstr "" +msgstr "U kunt nummers toevoegen aan dynamische blokken." #: airtime_mvc/application/controllers/PlaylistController.php:130 #: airtime_mvc/application/controllers/LibraryController.php:125 #, php-format msgid "%s not found" -msgstr "" +msgstr "%s niet gevonden" #: airtime_mvc/application/controllers/PlaylistController.php:144 #, php-format msgid "You don't have permission to delete selected %s(s)." -msgstr "" +msgstr "Je hebt geen toestemming om te verwijderen van de geselecteerde %s(s)" #: airtime_mvc/application/controllers/PlaylistController.php:151 #: airtime_mvc/application/controllers/LibraryController.php:134 msgid "Something went wrong." -msgstr "" +msgstr "Er ging iets mis." #: airtime_mvc/application/controllers/PlaylistController.php:157 msgid "You can only add tracks to smart block." -msgstr "" +msgstr "U kunt alleen nummers toevoegen aan smart blok." #: airtime_mvc/application/controllers/PlaylistController.php:175 msgid "Untitled Playlist" -msgstr "" +msgstr "Naamloze afspeellijst" #: airtime_mvc/application/controllers/PlaylistController.php:177 msgid "Untitled Smart Block" -msgstr "" +msgstr "Naamloze slimme block" #: airtime_mvc/application/controllers/PlaylistController.php:495 msgid "Unknown Playlist" -msgstr "" +msgstr "Onbekende afspeellijst" #: airtime_mvc/application/controllers/ApiController.php:61 #: airtime_mvc/application/controllers/Apiv2Controller.php:77 msgid "You are not allowed to access this resource." -msgstr "" +msgstr "U bent niet toegestaan voor toegang tot deze bron." #: airtime_mvc/application/controllers/ApiController.php:318 #: airtime_mvc/application/controllers/ApiController.php:390 @@ -2607,37 +2607,37 @@ msgstr "" #: airtime_mvc/application/controllers/ApiController.php:608 #: airtime_mvc/application/controllers/ApiController.php:641 msgid "You are not allowed to access this resource. " -msgstr "" +msgstr "U bent niet toegestaan voor toegang tot deze bron." #: airtime_mvc/application/controllers/ApiController.php:771 #: airtime_mvc/application/controllers/ApiController.php:791 #: airtime_mvc/application/controllers/ApiController.php:803 #, php-format msgid "File does not exist in %s" -msgstr "" +msgstr "Bestand bestaat niet in %s" #: airtime_mvc/application/controllers/ApiController.php:854 msgid "Bad request. no 'mode' parameter passed." -msgstr "" +msgstr "Slecht verzoek. geen 'mode' parameter doorgegeven." #: airtime_mvc/application/controllers/ApiController.php:864 msgid "Bad request. 'mode' parameter is invalid" -msgstr "" +msgstr "Slecht verzoek. 'mode' parameter is ongeldig" #: airtime_mvc/application/controllers/LibraryController.php:189 #: airtime_mvc/application/controllers/ShowbuilderController.php:194 msgid "Preview" -msgstr "" +msgstr "Voorbeeld" #: airtime_mvc/application/controllers/LibraryController.php:210 #: airtime_mvc/application/controllers/LibraryController.php:234 #: airtime_mvc/application/controllers/LibraryController.php:257 msgid "Add to Playlist" -msgstr "" +msgstr "Toevoegen aan afspeellijst" #: airtime_mvc/application/controllers/LibraryController.php:212 msgid "Add to Smart Block" -msgstr "" +msgstr "Toevoegen aan slimme blok" #: airtime_mvc/application/controllers/LibraryController.php:217 #: airtime_mvc/application/controllers/LibraryController.php:246 @@ -3042,7 +3042,7 @@ msgstr "" #: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:3 msgid "Smart Block Options" -msgstr "" +msgstr "Slimme blok opties" #: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:39 msgid "or" @@ -3247,11 +3247,11 @@ msgstr "" #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46 msgid "Dynamic Smart Block" -msgstr "" +msgstr "Dynamische slimme blok" #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47 msgid "Static Smart Block" -msgstr "" +msgstr "Statisch slimme blok" #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48 msgid "Audio Track" @@ -3263,11 +3263,11 @@ msgstr "" #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65 msgid "Static Smart Block Contents: " -msgstr "" +msgstr "Statisch slimme blok inhoud:" #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104 msgid "Dynamic Smart Block Criteria: " -msgstr "" +msgstr "Dynamische slimme blok Criteria:" #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137 msgid "Limit to " @@ -3481,7 +3481,7 @@ msgstr "" #: airtime_mvc/application/views/scripts/playlist/update.phtml:135 msgid "Empty smart block" -msgstr "" +msgstr "Lege slimme blok" #: airtime_mvc/application/views/scripts/playlist/update.phtml:137 msgid "Empty playlist" @@ -3527,7 +3527,7 @@ msgstr "" #: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:21 msgid "Empty smart block content" -msgstr "" +msgstr "Lege slimme blok inhoud" #: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:72 #: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:75 @@ -3538,7 +3538,7 @@ msgstr "" #: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:90 msgid "No open smart block" -msgstr "" +msgstr "Geen open slimme blok" #: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3 #: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3 diff --git a/airtime_mvc/locale/tr/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/tr/LC_MESSAGES/airtime.mo new file mode 100644 index 0000000000000000000000000000000000000000..0f6caebe263be6d2588877044083000fabde4536 GIT binary patch literal 460 zcmYk1!A=4(6h$?}JDt@1~9k$T!+O8\n" +"Language-Team: Turkish (http://www.transifex.com/projects/p/airtime/language/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: airtime_mvc/application/layouts/scripts/audio-player.phtml:5 +#: airtime_mvc/application/controllers/LocaleController.php:28 +msgid "Audio Player" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/layout.phtml:27 +msgid "Logout" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/layout.phtml:42 +#: airtime_mvc/application/layouts/scripts/layout.phtml:68 +msgid "Play" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/layout.phtml:43 +#: airtime_mvc/application/layouts/scripts/layout.phtml:69 +msgid "Stop" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/layout.phtml:47 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/controllers/LocaleController.php:270 +#: airtime_mvc/application/models/Block.php:1347 +msgid "Cue In" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/layout.phtml:49 +msgid "Set Cue In" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/layout.phtml:54 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:56 +#: airtime_mvc/application/controllers/LocaleController.php:271 +#: airtime_mvc/application/models/Block.php:1348 +msgid "Cue Out" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/layout.phtml:56 +msgid "Set Cue Out" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/layout.phtml:73 +msgid "Cursor" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/layout.phtml:74 +#: airtime_mvc/application/controllers/LocaleController.php:272 +msgid "Fade In" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/layout.phtml:75 +#: airtime_mvc/application/controllers/LocaleController.php:273 +msgid "Fade Out" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/login.phtml:24 +#, php-format +msgid "" +"%1$s copyright © %2$s All rights reserved.%3$sMaintained and " +"distributed under the %4$s by %5$s" +msgstr "" + +#: airtime_mvc/application/layouts/scripts/livestream.phtml:9 +#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2 +msgid "Live stream" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:48 +msgid "Enabled:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:57 +msgid "Stream Type:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:67 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 +msgid "Bit Rate:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:77 +msgid "Service Type:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:87 +msgid "Channels:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:88 +msgid "1 - Mono" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:88 +msgid "2 - Stereo" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:97 +msgid "Server" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:100 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:123 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:144 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:198 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:210 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/DateRange.php:35 +#: airtime_mvc/application/forms/DateRange.php:63 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:99 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:118 +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 +msgid "Invalid character entered" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:109 +#: airtime_mvc/application/forms/EmailServerPreferences.php:100 +msgid "Port" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:112 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:90 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:109 +msgid "Only numbers are allowed." +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:120 +#: airtime_mvc/application/forms/PasswordChange.php:17 +#: airtime_mvc/application/forms/EmailServerPreferences.php:82 +msgid "Password" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:132 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 +#: airtime_mvc/application/controllers/LocaleController.php:73 +#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:10 +#: airtime_mvc/application/models/Block.php:1351 +#: airtime_mvc/application/services/HistoryService.php:1112 +msgid "Genre" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:141 +msgid "URL" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:153 +#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 +msgid "Name" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:162 +#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:41 +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:55 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:57 +msgid "Description" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:171 +msgid "Mount Point" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +#: airtime_mvc/application/forms/PasswordRestore.php:25 +#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 +msgid "Username" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:195 +msgid "Admin User" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:207 +msgid "Admin Password" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:218 +#: airtime_mvc/application/controllers/LocaleController.php:161 +msgid "Getting information from the server..." +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:232 +msgid "Server cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:237 +msgid "Port cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:243 +msgid "Mount cannot be empty with Icecast server." +msgstr "" + +#: airtime_mvc/application/forms/EditAudioMD.php:19 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 +msgid "Title:" +msgstr "" + +#: airtime_mvc/application/forms/EditAudioMD.php:26 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148 +msgid "Creator:" +msgstr "" + +#: airtime_mvc/application/forms/EditAudioMD.php:33 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 +msgid "Album:" +msgstr "" + +#: airtime_mvc/application/forms/EditAudioMD.php:40 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12 +msgid "Track:" +msgstr "" + +#: airtime_mvc/application/forms/EditAudioMD.php:47 +#: airtime_mvc/application/forms/AddShowWhat.php:45 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 +msgid "Genre:" +msgstr "" + +#: airtime_mvc/application/forms/EditAudioMD.php:55 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 +msgid "Year:" +msgstr "" + +#: airtime_mvc/application/forms/EditAudioMD.php:67 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 +msgid "Label:" +msgstr "" + +#: airtime_mvc/application/forms/EditAudioMD.php:74 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 +msgid "Composer:" +msgstr "" + +#: airtime_mvc/application/forms/EditAudioMD.php:81 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 +msgid "Conductor:" +msgstr "" + +#: airtime_mvc/application/forms/EditAudioMD.php:88 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 +msgid "Mood:" +msgstr "" + +#: airtime_mvc/application/forms/EditAudioMD.php:96 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 +msgid "BPM:" +msgstr "" + +#: airtime_mvc/application/forms/EditAudioMD.php:105 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 +msgid "Copyright:" +msgstr "" + +#: airtime_mvc/application/forms/EditAudioMD.php:112 +msgid "ISRC Number:" +msgstr "" + +#: airtime_mvc/application/forms/EditAudioMD.php:119 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 +msgid "Website:" +msgstr "" + +#: airtime_mvc/application/forms/EditAudioMD.php:126 +#: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/EditUser.php:118 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 +msgid "Language:" +msgstr "" + +#: airtime_mvc/application/forms/EditAudioMD.php:135 +#: airtime_mvc/application/forms/AddUser.php:110 +#: airtime_mvc/application/forms/EditHistory.php:131 +#: airtime_mvc/application/forms/SupportSettings.php:161 +#: airtime_mvc/application/controllers/LocaleController.php:283 +#: airtime_mvc/application/views/scripts/form/edit-user.phtml:163 +#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:85 +#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:16 +#: airtime_mvc/application/views/scripts/preference/index.phtml:6 +#: airtime_mvc/application/views/scripts/preference/index.phtml:14 +#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:6 +#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:116 +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:27 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:24 +msgid "Save" +msgstr "" + +#: airtime_mvc/application/forms/EditAudioMD.php:145 +#: airtime_mvc/application/forms/EditHistory.php:141 +#: airtime_mvc/application/forms/PasswordRestore.php:46 +#: airtime_mvc/application/controllers/LocaleController.php:284 +#: airtime_mvc/application/controllers/LocaleController.php:307 +msgid "Cancel" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:29 +#: airtime_mvc/application/forms/Login.php:23 +#: airtime_mvc/application/forms/EditUser.php:36 +msgid "Username:" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:38 +#: airtime_mvc/application/forms/Login.php:38 +#: airtime_mvc/application/forms/EditUser.php:47 +msgid "Password:" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:46 +#: airtime_mvc/application/forms/EditUser.php:56 +msgid "Verify Password:" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:55 +#: airtime_mvc/application/forms/EditUser.php:66 +msgid "Firstname:" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:61 +#: airtime_mvc/application/forms/EditUser.php:74 +msgid "Lastname:" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:67 +#: airtime_mvc/application/forms/SupportSettings.php:46 +#: airtime_mvc/application/forms/RegisterAirtime.php:51 +#: airtime_mvc/application/forms/EditUser.php:82 +msgid "Email:" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:76 +#: airtime_mvc/application/forms/EditUser.php:93 +msgid "Mobile Phone:" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:82 +#: airtime_mvc/application/forms/EditUser.php:101 +msgid "Skype:" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:88 +#: airtime_mvc/application/forms/EditUser.php:109 +msgid "Jabber:" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:95 +msgid "User Type:" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:99 +#: airtime_mvc/application/controllers/LocaleController.php:313 +msgid "Guest" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:100 +#: airtime_mvc/application/controllers/LocaleController.php:311 +msgid "DJ" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:101 +#: airtime_mvc/application/controllers/LocaleController.php:312 +msgid "Program Manager" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:102 +#: airtime_mvc/application/controllers/LocaleController.php:310 +msgid "Admin" +msgstr "" + +#: airtime_mvc/application/forms/AddUser.php:120 +#: airtime_mvc/application/forms/EditUser.php:139 +msgid "Login name is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowStyle.php:10 +msgid "Background Colour:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowStyle.php:29 +msgid "Text Colour:" +msgstr "" + +#: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 +msgid "Date Start:" +msgstr "" + +#: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/AddShowRepeats.php:56 +msgid "Date End:" +msgstr "" + +#: airtime_mvc/application/forms/ShowBuilder.php:72 +msgid "Show:" +msgstr "" + +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 +msgid "days" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 +msgid "Day must be specified" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 +msgid "Time must be specified" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "" + +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" +msgstr "" + +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" +msgstr "" + +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" +msgstr "" + +#: airtime_mvc/application/forms/Login.php:67 +#: airtime_mvc/application/views/scripts/login/index.phtml:3 +msgid "Login" +msgstr "" + +#: airtime_mvc/application/forms/Login.php:86 +msgid "Type the characters you see in the picture below." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:21 +#: airtime_mvc/application/forms/SupportSettings.php:21 +#: airtime_mvc/application/forms/RegisterAirtime.php:30 +msgid "Station Name" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:33 +msgid "Default Crossfade Duration (s):" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:40 +#: airtime_mvc/application/forms/GeneralPreferences.php:59 +#: airtime_mvc/application/forms/GeneralPreferences.php:78 +msgid "enter a time in seconds 0{.0}" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:52 +msgid "Default Fade In (s):" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:71 +msgid "Default Fade Out (s):" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:89 +#, php-format +msgid "" +"Allow Remote Websites To Access \"Schedule\" Info?%s (Enable this to make " +"front-end widgets work.)" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:90 +msgid "Disabled" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:91 +msgid "Enabled" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:97 +msgid "Default Interface Language" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:105 +msgid "Station Timezone" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:113 +msgid "Week Starts On" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:123 +#: airtime_mvc/application/controllers/LocaleController.php:238 +msgid "Sunday" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:124 +#: airtime_mvc/application/controllers/LocaleController.php:239 +msgid "Monday" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:125 +#: airtime_mvc/application/controllers/LocaleController.php:240 +msgid "Tuesday" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:126 +#: airtime_mvc/application/controllers/LocaleController.php:241 +msgid "Wednesday" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:127 +#: airtime_mvc/application/controllers/LocaleController.php:242 +msgid "Thursday" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:128 +#: airtime_mvc/application/controllers/LocaleController.php:243 +msgid "Friday" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:129 +#: airtime_mvc/application/controllers/LocaleController.php:244 +msgid "Saturday" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:10 +msgid "Link:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:16 +msgid "Repeat Type:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:19 +msgid "weekly" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:20 +msgid "every 2 weeks" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:21 +msgid "every 3 weeks" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:22 +msgid "every 4 weeks" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:23 +msgid "monthly" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:32 +msgid "Select Days:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:35 +#: airtime_mvc/application/controllers/LocaleController.php:245 +msgid "Sun" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:36 +#: airtime_mvc/application/controllers/LocaleController.php:246 +msgid "Mon" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:37 +#: airtime_mvc/application/controllers/LocaleController.php:247 +msgid "Tue" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:38 +#: airtime_mvc/application/controllers/LocaleController.php:248 +msgid "Wed" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:39 +#: airtime_mvc/application/controllers/LocaleController.php:249 +msgid "Thu" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:40 +#: airtime_mvc/application/controllers/LocaleController.php:250 +msgid "Fri" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:41 +#: airtime_mvc/application/controllers/LocaleController.php:251 +msgid "Sat" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:47 +msgid "Repeat By:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:50 +msgid "day of the month" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:50 +msgid "day of the week" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:69 +msgid "No End?" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:106 +msgid "End date must be after start date" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRepeats.php:113 +msgid "Please select a repeat day" +msgstr "" + +#: airtime_mvc/application/forms/PasswordChange.php:28 +msgid "Confirm new password" +msgstr "" + +#: airtime_mvc/application/forms/PasswordChange.php:36 +msgid "Password confirmation does not match your password." +msgstr "" + +#: airtime_mvc/application/forms/PasswordChange.php:43 +msgid "Get new password" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:48 +#: airtime_mvc/application/models/Block.php:1340 +msgid "Select criteria" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:49 +#: airtime_mvc/application/controllers/LocaleController.php:66 +#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:8 +#: airtime_mvc/application/models/Block.php:1341 +#: airtime_mvc/application/services/HistoryService.php:1110 +msgid "Album" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 +#: airtime_mvc/application/models/Block.php:1342 +msgid "Bit Rate (Kbps)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:51 +#: airtime_mvc/application/controllers/LocaleController.php:68 +#: airtime_mvc/application/models/Block.php:1343 +msgid "BPM" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 +#: airtime_mvc/application/controllers/LocaleController.php:69 +#: airtime_mvc/application/models/Block.php:1344 +#: airtime_mvc/application/services/HistoryService.php:1115 +#: airtime_mvc/application/services/HistoryService.php:1169 +msgid "Composer" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:53 +#: airtime_mvc/application/controllers/LocaleController.php:70 +#: airtime_mvc/application/models/Block.php:1345 +#: airtime_mvc/application/services/HistoryService.php:1120 +msgid "Conductor" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:54 +#: airtime_mvc/application/controllers/LocaleController.php:71 +#: airtime_mvc/application/models/Block.php:1346 +#: airtime_mvc/application/services/HistoryService.php:1117 +#: airtime_mvc/application/services/HistoryService.php:1170 +msgid "Copyright" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/controllers/LocaleController.php:65 +#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:7 +#: airtime_mvc/application/models/Block.php:1349 +#: airtime_mvc/application/services/HistoryService.php:1109 +#: airtime_mvc/application/services/HistoryService.php:1149 +#: airtime_mvc/application/services/HistoryService.php:1166 +msgid "Creator" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:58 +#: airtime_mvc/application/controllers/LocaleController.php:72 +#: airtime_mvc/application/models/Block.php:1350 +msgid "Encoded By" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:60 +#: airtime_mvc/application/controllers/LocaleController.php:74 +#: airtime_mvc/application/models/Block.php:1352 +#: airtime_mvc/application/services/HistoryService.php:1116 +msgid "ISRC" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:61 +#: airtime_mvc/application/controllers/LocaleController.php:75 +#: airtime_mvc/application/models/Block.php:1353 +#: airtime_mvc/application/services/HistoryService.php:1114 +msgid "Label" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:62 +#: airtime_mvc/application/controllers/LocaleController.php:76 +#: airtime_mvc/application/models/Block.php:1354 +#: airtime_mvc/application/services/HistoryService.php:1121 +msgid "Language" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:63 +#: airtime_mvc/application/controllers/LocaleController.php:77 +#: airtime_mvc/application/models/Block.php:1355 +msgid "Last Modified" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:64 +#: airtime_mvc/application/controllers/LocaleController.php:78 +#: airtime_mvc/application/models/Block.php:1356 +msgid "Last Played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:65 +#: airtime_mvc/application/controllers/LocaleController.php:79 +#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:9 +#: airtime_mvc/application/models/Block.php:1357 +#: airtime_mvc/application/services/HistoryService.php:1111 +#: airtime_mvc/application/services/HistoryService.php:1168 +msgid "Length" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:66 +#: airtime_mvc/application/controllers/LocaleController.php:80 +#: airtime_mvc/application/models/Block.php:1358 +msgid "Mime" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:67 +#: airtime_mvc/application/controllers/LocaleController.php:81 +#: airtime_mvc/application/models/Block.php:1359 +#: airtime_mvc/application/services/HistoryService.php:1113 +msgid "Mood" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:68 +#: airtime_mvc/application/controllers/LocaleController.php:82 +#: airtime_mvc/application/models/Block.php:1360 +msgid "Owner" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:69 +#: airtime_mvc/application/controllers/LocaleController.php:83 +#: airtime_mvc/application/models/Block.php:1361 +msgid "Replay Gain" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:70 +#: airtime_mvc/application/models/Block.php:1362 +msgid "Sample Rate (kHz)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:71 +#: airtime_mvc/application/controllers/LocaleController.php:64 +#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:6 +#: airtime_mvc/application/models/Block.php:1363 +#: airtime_mvc/application/services/HistoryService.php:1108 +#: airtime_mvc/application/services/HistoryService.php:1148 +#: airtime_mvc/application/services/HistoryService.php:1165 +msgid "Title" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:72 +#: airtime_mvc/application/controllers/LocaleController.php:85 +#: airtime_mvc/application/models/Block.php:1364 +msgid "Track Number" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 +#: airtime_mvc/application/controllers/LocaleController.php:86 +#: airtime_mvc/application/models/Block.php:1365 +msgid "Uploaded" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/controllers/LocaleController.php:87 +#: airtime_mvc/application/models/Block.php:1366 +msgid "Website" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:75 +#: airtime_mvc/application/controllers/LocaleController.php:88 +#: airtime_mvc/application/models/Block.php:1367 +#: airtime_mvc/application/services/HistoryService.php:1118 +msgid "Year" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:87 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:103 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:251 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:366 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:404 +#: airtime_mvc/application/controllers/LocaleController.php:139 +#: airtime_mvc/application/models/Block.php:1371 +msgid "Select modifier" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:88 +#: airtime_mvc/application/controllers/LocaleController.php:140 +#: airtime_mvc/application/models/Block.php:1372 +msgid "contains" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:89 +#: airtime_mvc/application/controllers/LocaleController.php:141 +#: airtime_mvc/application/models/Block.php:1373 +msgid "does not contain" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:90 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:104 +#: airtime_mvc/application/controllers/LocaleController.php:142 +#: airtime_mvc/application/models/Block.php:1374 +#: airtime_mvc/application/models/Block.php:1378 +msgid "is" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:91 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:105 +#: airtime_mvc/application/controllers/LocaleController.php:143 +#: airtime_mvc/application/models/Block.php:1375 +#: airtime_mvc/application/models/Block.php:1379 +msgid "is not" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:92 +#: airtime_mvc/application/controllers/LocaleController.php:144 +#: airtime_mvc/application/models/Block.php:1376 +msgid "starts with" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:93 +#: airtime_mvc/application/controllers/LocaleController.php:145 +#: airtime_mvc/application/models/Block.php:1377 +msgid "ends with" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:106 +#: airtime_mvc/application/controllers/LocaleController.php:146 +#: airtime_mvc/application/models/Block.php:1380 +msgid "is greater than" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:107 +#: airtime_mvc/application/controllers/LocaleController.php:147 +#: airtime_mvc/application/models/Block.php:1381 +msgid "is less than" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:108 +#: airtime_mvc/application/controllers/LocaleController.php:148 +#: airtime_mvc/application/models/Block.php:1382 +msgid "is in the range" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:118 +msgid "hours" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:119 +msgid "minutes" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:120 +#: airtime_mvc/application/models/Block.php:333 +msgid "items" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "Set smart block type:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:170 +msgid "Static" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:171 +msgid "Dynamic" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:285 +msgid "Allow Repeat Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:302 +msgid "Limit to" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:324 +msgid "Generate playlist content and save criteria" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 +msgid "Generate" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:332 +msgid "Shuffle playlist content" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:334 +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:24 +msgid "Shuffle" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:500 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:512 +msgid "Limit cannot be empty or smaller than 0" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:505 +msgid "Limit cannot be more than 24 hrs" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:515 +msgid "The value should be an integer" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:518 +msgid "500 is the max item limit value you can set" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 +msgid "You must select Criteria and Modifier" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:536 +msgid "'Length' should be in '00:00:00' format" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:554 +msgid "" +"The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 " +"00:00:00)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:568 +msgid "The value has to be numeric" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:573 +msgid "The value should be less then 2147483648" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +#, php-format +msgid "The value should be less than %s characters" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:585 +msgid "Value cannot be empty" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 +msgid "Auto Switch Off" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:26 +msgid "Auto Switch On" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:33 +msgid "Switch Transition Fade (s)" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:36 +msgid "enter a time in seconds 00{.000000}" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:45 +msgid "Master Username" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:62 +msgid "Master Password" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:70 +msgid "Master Source Connection URL" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:78 +msgid "Show Source Connection URL" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:87 +msgid "Master Source Port" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:96 +msgid "Master Source Mount Point" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:106 +msgid "Show Source Port" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:115 +msgid "Show Source Mount Point" +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:153 +msgid "You cannot use same port as Master DJ port." +msgstr "" + +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:164 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:182 +#, php-format +msgid "Port %s is not available" +msgstr "" + +#: airtime_mvc/application/forms/SupportSettings.php:34 +#: airtime_mvc/application/forms/RegisterAirtime.php:39 +msgid "Phone:" +msgstr "" + +#: airtime_mvc/application/forms/SupportSettings.php:57 +#: airtime_mvc/application/forms/RegisterAirtime.php:62 +msgid "Station Web Site:" +msgstr "" + +#: airtime_mvc/application/forms/SupportSettings.php:68 +#: airtime_mvc/application/forms/RegisterAirtime.php:73 +msgid "Country:" +msgstr "" + +#: airtime_mvc/application/forms/SupportSettings.php:79 +#: airtime_mvc/application/forms/RegisterAirtime.php:84 +msgid "City:" +msgstr "" + +#: airtime_mvc/application/forms/SupportSettings.php:91 +#: airtime_mvc/application/forms/RegisterAirtime.php:96 +msgid "Station Description:" +msgstr "" + +#: airtime_mvc/application/forms/SupportSettings.php:101 +#: airtime_mvc/application/forms/RegisterAirtime.php:106 +msgid "Station Logo:" +msgstr "" + +#: airtime_mvc/application/forms/SupportSettings.php:112 +#: airtime_mvc/application/forms/RegisterAirtime.php:116 +#: airtime_mvc/application/controllers/LocaleController.php:330 +msgid "Send support feedback" +msgstr "" + +#: airtime_mvc/application/forms/SupportSettings.php:122 +#: airtime_mvc/application/forms/RegisterAirtime.php:126 +#, php-format +msgid "Promote my station on %s" +msgstr "" + +#: airtime_mvc/application/forms/SupportSettings.php:150 +#: airtime_mvc/application/forms/RegisterAirtime.php:151 +#, php-format +msgid "By checking this box, I agree to %s's %sprivacy policy%s." +msgstr "" + +#: airtime_mvc/application/forms/SupportSettings.php:174 +#: airtime_mvc/application/forms/RegisterAirtime.php:169 +msgid "You have to agree to privacy policy." +msgstr "" + +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" +msgstr "" + +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +#: airtime_mvc/application/services/HistoryService.php:1146 +msgid "Start Time" +msgstr "" + +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +#: airtime_mvc/application/services/HistoryService.php:1147 +msgid "End Time" +msgstr "" + +#: airtime_mvc/application/forms/EditHistoryItem.php:57 +#: airtime_mvc/application/controllers/LocaleController.php:389 +#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53 +msgid "No Show" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" +msgstr "" + +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:10 +#, php-format +msgid "Use %s Authentication:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:16 +msgid "Use Custom Authentication:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:39 +msgid "Custom Password" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:63 +msgid "Username field cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:68 +msgid "Password field cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "E-mail" +msgstr "" + +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Restore password" +msgstr "" + +#: airtime_mvc/application/forms/StreamSetting.php:22 +msgid "Hardware Audio Output" +msgstr "" + +#: airtime_mvc/application/forms/StreamSetting.php:33 +msgid "Output Type" +msgstr "" + +#: airtime_mvc/application/forms/StreamSetting.php:44 +msgid "Icecast Vorbis Metadata" +msgstr "" + +#: airtime_mvc/application/forms/StreamSetting.php:54 +msgid "Stream Label:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSetting.php:55 +msgid "Artist - Title" +msgstr "" + +#: airtime_mvc/application/forms/StreamSetting.php:56 +msgid "Show - Artist - Title" +msgstr "" + +#: airtime_mvc/application/forms/StreamSetting.php:57 +msgid "Station name - Show name" +msgstr "" + +#: airtime_mvc/application/forms/StreamSetting.php:63 +msgid "Off Air Metadata" +msgstr "" + +#: airtime_mvc/application/forms/StreamSetting.php:69 +msgid "Enable Replay Gain" +msgstr "" + +#: airtime_mvc/application/forms/StreamSetting.php:75 +msgid "Replay Gain Modifier" +msgstr "" + +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 +msgid "" +"'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "" + +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "" + +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" +msgstr "" + +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" +msgstr "" + +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "" + +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:16 +msgid "'%value%' does not fit the time format 'HH:mm'" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:22 +msgid "Date/Time Start:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:49 +msgid "Date/Time End:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:74 +msgid "Duration:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:83 +msgid "Timezone:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:92 +msgid "Repeats?" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:124 +msgid "Cannot create show in the past" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:132 +msgid "Cannot modify start date/time of the show that is already started" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:141 +#: airtime_mvc/application/models/Show.php:278 +msgid "End date/time cannot be in the past" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:149 +msgid "Cannot have duration < 0m" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:153 +msgid "Cannot have duration 00h 00m" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:160 +msgid "Cannot have duration greater than 24h" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhen.php:287 +#: airtime_mvc/application/forms/AddShowWhen.php:301 +#: airtime_mvc/application/forms/AddShowWhen.php:325 +#: airtime_mvc/application/forms/AddShowWhen.php:331 +#: airtime_mvc/application/forms/AddShowWhen.php:336 +#: airtime_mvc/application/services/CalendarService.php:304 +msgid "Cannot schedule overlapping shows" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhat.php:26 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146 +msgid "Name:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhat.php:36 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150 +msgid "URL:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowWhat.php:54 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149 +msgid "Description:" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:16 +msgid "Automatically Upload Recorded Shows" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:26 +msgid "Enable SoundCloud Upload" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:36 +msgid "Automatically Mark Files \"Downloadable\" on SoundCloud" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:47 +msgid "SoundCloud Email" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:67 +msgid "SoundCloud Password" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:87 +msgid "SoundCloud Tags: (separate tags with spaces)" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:99 +msgid "Default Genre:" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:109 +msgid "Default Track Type:" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:113 +msgid "Original" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:114 +msgid "Remix" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:115 +msgid "Live" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:116 +msgid "Recording" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:117 +msgid "Spoken" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:118 +msgid "Podcast" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:119 +msgid "Demo" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:120 +msgid "Work in progress" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:121 +msgid "Stem" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:122 +msgid "Loop" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:123 +msgid "Sound Effect" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:124 +msgid "One Shot Sample" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:125 +msgid "Other" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:133 +msgid "Default License:" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:137 +msgid "The work is in the public domain" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:138 +msgid "All rights are reserved" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:139 +msgid "Creative Commons Attribution" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:140 +msgid "Creative Commons Attribution Noncommercial" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:141 +msgid "Creative Commons Attribution No Derivative Works" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:142 +msgid "Creative Commons Attribution Share Alike" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:143 +msgid "Creative Commons Attribution Noncommercial Non Derivate Works" +msgstr "" + +#: airtime_mvc/application/forms/SoundcloudPreferences.php:144 +msgid "Creative Commons Attribution Noncommercial Share Alike" +msgstr "" + +#: airtime_mvc/application/forms/EditUser.php:125 +msgid "Interface Timezone:" +msgstr "" + +#: airtime_mvc/application/forms/EmailServerPreferences.php:17 +msgid "Enable System Emails (Password Reset)" +msgstr "" + +#: airtime_mvc/application/forms/EmailServerPreferences.php:27 +msgid "Reset Password 'From' Email" +msgstr "" + +#: airtime_mvc/application/forms/EmailServerPreferences.php:34 +msgid "Configure Mail Server" +msgstr "" + +#: airtime_mvc/application/forms/EmailServerPreferences.php:43 +msgid "Requires Authentication" +msgstr "" + +#: airtime_mvc/application/forms/EmailServerPreferences.php:53 +msgid "Mail Server" +msgstr "" + +#: airtime_mvc/application/forms/EmailServerPreferences.php:67 +msgid "Email Address" +msgstr "" + +#: airtime_mvc/application/controllers/ListenerstatController.php:91 +msgid "" +"Please make sure admin user/password is correct on System->Streams page." +msgstr "" + +#: airtime_mvc/application/controllers/WebstreamController.php:29 +#: airtime_mvc/application/controllers/WebstreamController.php:33 +msgid "Untitled Webstream" +msgstr "" + +#: airtime_mvc/application/controllers/WebstreamController.php:138 +msgid "Webstream saved." +msgstr "" + +#: airtime_mvc/application/controllers/WebstreamController.php:146 +msgid "Invalid form values." +msgstr "" + +#: airtime_mvc/application/controllers/LoginController.php:35 +msgid "Please enter your user name and password" +msgstr "" + +#: airtime_mvc/application/controllers/LoginController.php:77 +msgid "Wrong username or password provided. Please try again." +msgstr "" + +#: airtime_mvc/application/controllers/LoginController.php:145 +msgid "" +"Email could not be sent. Check your mail server settings and ensure it has " +"been configured properly." +msgstr "" + +#: airtime_mvc/application/controllers/LoginController.php:148 +msgid "Given email not found." +msgstr "" + +#: airtime_mvc/application/controllers/ScheduleController.php:350 +#, php-format +msgid "Rebroadcast of show %s from %s at %s" +msgstr "" + +#: airtime_mvc/application/controllers/ScheduleController.php:624 +#: airtime_mvc/application/controllers/LibraryController.php:222 +msgid "Download" +msgstr "" + +#: airtime_mvc/application/controllers/UserController.php:76 +msgid "User added successfully!" +msgstr "" + +#: airtime_mvc/application/controllers/UserController.php:78 +msgid "User updated successfully!" +msgstr "" + +#: airtime_mvc/application/controllers/UserController.php:148 +msgid "Settings updated successfully!" +msgstr "" + +#: airtime_mvc/application/controllers/ErrorController.php:17 +msgid "Page not found" +msgstr "" + +#: airtime_mvc/application/controllers/ErrorController.php:22 +msgid "Application error" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:30 +msgid "Recording:" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:31 +msgid "Master Stream" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:32 +msgid "Live Stream" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:33 +msgid "Nothing Scheduled" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:34 +msgid "Current Show:" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:35 +msgid "Current" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:37 +msgid "You are running the latest version" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:38 +msgid "New version available: " +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:39 +msgid "This version will soon be obsolete." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:40 +msgid "This version is no longer supported." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:41 +msgid "Please upgrade to " +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:43 +msgid "Add to current playlist" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:44 +msgid "Add to current smart block" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:45 +msgid "Adding 1 Item" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:46 +#, php-format +msgid "Adding %s Items" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:47 +msgid "You can only add tracks to smart blocks." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:48 +#: airtime_mvc/application/controllers/PlaylistController.php:163 +msgid "You can only add tracks, smart blocks, and webstreams to playlists." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:51 +msgid "Please select a cursor position on timeline." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:55 +#: airtime_mvc/application/controllers/LibraryController.php:218 +msgid "Edit Metadata" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:56 +msgid "Add to selected show" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:57 +msgid "Select" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:58 +msgid "Select this page" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:59 +msgid "Deselect this page" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:60 +msgid "Deselect all" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:61 +msgid "Are you sure you want to delete the selected item(s)?" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:62 +msgid "Scheduled" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:63 +msgid "Playlist / Block" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:67 +msgid "Bit Rate" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:84 +msgid "Sample Rate" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:89 +msgid "Loading..." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:90 +#: airtime_mvc/application/controllers/LocaleController.php:390 +msgid "All" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:91 +msgid "Files" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:92 +msgid "Playlists" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:93 +msgid "Smart Blocks" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:94 +msgid "Web Streams" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:95 +msgid "Unknown type: " +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:96 +msgid "Are you sure you want to delete the selected item?" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:97 +#: airtime_mvc/application/controllers/LocaleController.php:198 +msgid "Uploading in progress..." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:98 +msgid "Retrieving data from the server..." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:99 +msgid "The soundcloud id for this file is: " +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:100 +msgid "There was an error while uploading to soundcloud." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:101 +msgid "Error code: " +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:102 +msgid "Error msg: " +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:103 +msgid "Input must be a positive number" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:104 +msgid "Input must be a number" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:105 +msgid "Input must be in the format: yyyy-mm-dd" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:106 +msgid "Input must be in the format: hh:mm:ss.t" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:109 +#, 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 "" + +#: airtime_mvc/application/controllers/LocaleController.php:111 +msgid "Open Media Builder" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:112 +msgid "please put in a time '00:00:00 (.0)'" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:113 +msgid "please put in a time in seconds '00 (.0)'" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:114 +msgid "Your browser does not support playing this file type: " +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:115 +msgid "Dynamic block is not previewable" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:116 +msgid "Limit to: " +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:117 +msgid "Playlist saved" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:118 +msgid "Playlist shuffled" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:120 +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_mvc/application/controllers/LocaleController.php:122 +#, php-format +msgid "Listener Count on %s: %s" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:124 +msgid "Remind me in 1 week" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:125 +msgid "Remind me never" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:126 +msgid "Yes, help Airtime" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:127 +#: airtime_mvc/application/controllers/LocaleController.php:176 +msgid "Image must be one of jpg, jpeg, png, or gif" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:130 +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 "" + +#: airtime_mvc/application/controllers/LocaleController.php:132 +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 "" + +#: airtime_mvc/application/controllers/LocaleController.php:134 +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_mvc/application/controllers/LocaleController.php:135 +msgid "Smart block shuffled" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:136 +msgid "Smart block generated and criteria saved" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:137 +msgid "Smart block saved" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:138 +msgid "Processing..." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:150 +msgid "Choose Storage Folder" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:151 +msgid "Choose Folder to Watch" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:153 +msgid "" +"Are you sure you want to change the storage folder?\n" +"This will remove the files from your Airtime library!" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:154 +#: airtime_mvc/application/views/scripts/preference/directory-config.phtml:2 +msgid "Manage Media Folders" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:155 +msgid "Are you sure you want to remove the watched folder?" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:156 +msgid "This path is currently not accessible." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:158 +#, php-format +msgid "" +"Some stream types require extra configuration. Details about enabling %sAAC+" +" Support%s or %sOpus Support%s are provided." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:159 +msgid "Connected to the streaming server" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:160 +msgid "The stream is disabled" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:162 +msgid "Can not connect to the streaming server" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:164 +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_mvc/application/controllers/LocaleController.php:165 +#, php-format +msgid "For more details, please read the %sAirtime Manual%s" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:167 +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 "" + +#: airtime_mvc/application/controllers/LocaleController.php:168 +msgid "" +"Check this box to automatically switch off Master/Show source upon source " +"disconnection." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:169 +msgid "" +"Check this box to automatically switch on Master/Show source upon source " +"connection." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:170 +msgid "" +"If your Icecast server expects a username of 'source', this field can be " +"left blank." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:171 +#: airtime_mvc/application/controllers/LocaleController.php:182 +msgid "" +"If your live streaming client does not ask for a username, this field should" +" be 'source'." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:173 +msgid "" +"If you change the username or password values for an enabled stream the " +"playout engine will be rebooted and your listeners will hear silence for " +"5-10 seconds. Changing the following fields will NOT cause a reboot: Stream " +"Label (Global Settings), and Switch Transition Fade(s), Master Username, and" +" Master Password (Input Stream Settings). If Airtime is recording, and if " +"the change causes a playout engine restart, the recording will be " +"interrupted." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:174 +msgid "" +"This is the admin username and password for Icecast/SHOUTcast to get " +"listener statistics." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:178 +msgid "" +"Warning: You cannot change this field while the show is currently playing" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:179 +msgid "No result found" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:180 +msgid "" +"This follows the same security pattern for the shows: only users assigned to" +" the show can connect." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:181 +msgid "Specify custom authentication which will work only for this show." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:183 +msgid "The show instance doesn't exist anymore!" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:184 +msgid "Warning: Shows cannot be re-linked" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:185 +msgid "" +"By linking your repeating shows any media items scheduled in any repeat show" +" will also get scheduled in the other repeat shows" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:186 +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 "" + +#: airtime_mvc/application/controllers/LocaleController.php:190 +msgid "Show" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:191 +msgid "Show is empty" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:192 +msgid "1m" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:193 +msgid "5m" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:194 +msgid "10m" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:195 +msgid "15m" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:196 +msgid "30m" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:197 +msgid "60m" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:199 +msgid "Retreiving data from the server..." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:205 +msgid "This show has no scheduled content." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:206 +msgid "This show is not completely filled with content." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:210 +msgid "January" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:211 +msgid "February" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:212 +msgid "March" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:213 +msgid "April" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:214 +#: airtime_mvc/application/controllers/LocaleController.php:226 +msgid "May" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:215 +msgid "June" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:216 +msgid "July" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:217 +msgid "August" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:218 +msgid "September" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:219 +msgid "October" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:220 +msgid "November" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:221 +msgid "December" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:222 +msgid "Jan" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:223 +msgid "Feb" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:224 +msgid "Mar" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:225 +msgid "Apr" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:227 +msgid "Jun" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:228 +msgid "Jul" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:229 +msgid "Aug" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:230 +msgid "Sep" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:231 +msgid "Oct" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:232 +msgid "Nov" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:233 +msgid "Dec" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:234 +msgid "today" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:235 +msgid "day" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:236 +msgid "week" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:237 +msgid "month" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:252 +msgid "" +"Shows longer than their scheduled time will be cut off by a following show." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:253 +msgid "Cancel Current Show?" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:254 +#: airtime_mvc/application/controllers/LocaleController.php:298 +msgid "Stop recording current show?" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:255 +msgid "Ok" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:256 +msgid "Contents of Show" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:259 +msgid "Remove all content?" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:261 +msgid "Delete selected item(s)?" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:262 +#: airtime_mvc/application/views/scripts/schedule/show-content-dialog.phtml:5 +msgid "Start" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:263 +msgid "End" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:264 +msgid "Duration" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:274 +msgid "Show Empty" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:275 +msgid "Recording From Line In" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:276 +msgid "Track preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:280 +msgid "Cannot schedule outside a show." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:281 +msgid "Moving 1 Item" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:282 +#, php-format +msgid "Moving %s Items" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:285 +msgid "Fade Editor" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:286 +msgid "Cue Editor" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:287 +msgid "" +"Waveform features are available in a browser supporting the Web Audio API" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:290 +msgid "Select all" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:291 +msgid "Select none" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:292 +msgid "Remove overbooked tracks" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:293 +msgid "Remove selected scheduled items" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:294 +msgid "Jump to the current playing track" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:295 +msgid "Cancel current show" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:300 +msgid "Open library to add or remove content" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:301 +#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:15 +#: airtime_mvc/application/services/CalendarService.php:96 +msgid "Add / Remove Content" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:303 +msgid "in use" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:304 +msgid "Disk" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:306 +msgid "Look in" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:308 +msgid "Open" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:314 +msgid "Guests can do the following:" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:315 +msgid "View schedule" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:316 +msgid "View show content" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:317 +msgid "DJs can do the following:" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:318 +msgid "Manage assigned show content" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:319 +msgid "Import media files" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:320 +msgid "Create playlists, smart blocks, and webstreams" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:321 +msgid "Manage their own library content" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:322 +msgid "Progam Managers can do the following:" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:323 +msgid "View and manage show content" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:324 +msgid "Schedule shows" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:325 +msgid "Manage all library content" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:326 +msgid "Admins can do the following:" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:327 +msgid "Manage preferences" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:328 +msgid "Manage users" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:329 +msgid "Manage watched folders" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:331 +msgid "View system status" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:332 +msgid "Access playout history" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:333 +msgid "View listener stats" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:335 +msgid "Show / hide columns" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:337 +msgid "From {from} to {to}" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:338 +msgid "kbps" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:339 +msgid "yyyy-mm-dd" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:340 +msgid "hh:mm:ss.t" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:341 +msgid "kHz" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:344 +msgid "Su" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:345 +msgid "Mo" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:346 +msgid "Tu" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:347 +msgid "We" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:348 +msgid "Th" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:349 +msgid "Fr" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:350 +msgid "Sa" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:351 +#: airtime_mvc/application/controllers/LocaleController.php:379 +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3 +msgid "Close" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:353 +msgid "Hour" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:354 +msgid "Minute" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:355 +msgid "Done" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:358 +msgid "Select files" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:359 +#: airtime_mvc/application/controllers/LocaleController.php:360 +msgid "Add files to the upload queue and click the start button." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:361 +#: airtime_mvc/application/controllers/LocaleController.php:362 +#: airtime_mvc/application/configs/navigation.php:76 +#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:5 +#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:8 +msgid "Status" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:363 +msgid "Add Files" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:364 +msgid "Stop Upload" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:365 +msgid "Start upload" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:366 +msgid "Add files" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:367 +#, php-format +msgid "Uploaded %d/%d files" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:368 +msgid "N/A" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:369 +msgid "Drag files here." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:370 +msgid "File extension error." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:371 +msgid "File size error." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:372 +msgid "File count error." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:373 +msgid "Init error." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:374 +msgid "HTTP Error." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:375 +msgid "Security error." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:376 +msgid "Generic error." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:377 +msgid "IO error." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:378 +#, php-format +msgid "File: %s" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:380 +#, php-format +msgid "%d files queued" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:381 +msgid "File: %f, size: %s, max file size: %m" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:382 +msgid "Upload URL might be wrong or doesn't exist" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:383 +msgid "Error: File too large: " +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:384 +msgid "Error: Invalid file extension: " +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:386 +#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:25 +#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:56 +msgid "Set Default" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:387 +msgid "Create Entry" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:388 +msgid "Edit History Record" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:391 +#, php-format +msgid "Copied %s row%s to the clipboard" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:392 +#, php-format +msgid "" +"%sPrint view%sPlease use your browser's print function to print this table. " +"Press escape when finished." +msgstr "" + +#: airtime_mvc/application/controllers/DashboardController.php:36 +#: airtime_mvc/application/controllers/DashboardController.php:85 +msgid "You don't have permission to disconnect source." +msgstr "" + +#: airtime_mvc/application/controllers/DashboardController.php:38 +#: airtime_mvc/application/controllers/DashboardController.php:87 +msgid "There is no source connected to this input." +msgstr "" + +#: airtime_mvc/application/controllers/DashboardController.php:82 +msgid "You don't have permission to switch source." +msgstr "" + +#: airtime_mvc/application/controllers/PlaylistController.php:48 +#, php-format +msgid "You are viewing an older version of %s" +msgstr "" + +#: airtime_mvc/application/controllers/PlaylistController.php:123 +msgid "You cannot add tracks to dynamic blocks." +msgstr "" + +#: airtime_mvc/application/controllers/PlaylistController.php:130 +#: airtime_mvc/application/controllers/LibraryController.php:125 +#, php-format +msgid "%s not found" +msgstr "" + +#: airtime_mvc/application/controllers/PlaylistController.php:144 +#, php-format +msgid "You don't have permission to delete selected %s(s)." +msgstr "" + +#: airtime_mvc/application/controllers/PlaylistController.php:151 +#: airtime_mvc/application/controllers/LibraryController.php:134 +msgid "Something went wrong." +msgstr "" + +#: airtime_mvc/application/controllers/PlaylistController.php:157 +msgid "You can only add tracks to smart block." +msgstr "" + +#: airtime_mvc/application/controllers/PlaylistController.php:175 +msgid "Untitled Playlist" +msgstr "" + +#: airtime_mvc/application/controllers/PlaylistController.php:177 +msgid "Untitled Smart Block" +msgstr "" + +#: airtime_mvc/application/controllers/PlaylistController.php:495 +msgid "Unknown Playlist" +msgstr "" + +#: airtime_mvc/application/controllers/ApiController.php:61 +#: airtime_mvc/application/controllers/Apiv2Controller.php:77 +msgid "You are not allowed to access this resource." +msgstr "" + +#: airtime_mvc/application/controllers/ApiController.php:318 +#: airtime_mvc/application/controllers/ApiController.php:390 +#: airtime_mvc/application/controllers/ApiController.php:504 +#: airtime_mvc/application/controllers/ApiController.php:608 +#: airtime_mvc/application/controllers/ApiController.php:641 +msgid "You are not allowed to access this resource. " +msgstr "" + +#: airtime_mvc/application/controllers/ApiController.php:771 +#: airtime_mvc/application/controllers/ApiController.php:791 +#: airtime_mvc/application/controllers/ApiController.php:803 +#, php-format +msgid "File does not exist in %s" +msgstr "" + +#: airtime_mvc/application/controllers/ApiController.php:854 +msgid "Bad request. no 'mode' parameter passed." +msgstr "" + +#: airtime_mvc/application/controllers/ApiController.php:864 +msgid "Bad request. 'mode' parameter is invalid" +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:189 +#: airtime_mvc/application/controllers/ShowbuilderController.php:194 +msgid "Preview" +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:210 +#: airtime_mvc/application/controllers/LibraryController.php:234 +#: airtime_mvc/application/controllers/LibraryController.php:257 +msgid "Add to Playlist" +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:212 +msgid "Add to Smart Block" +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:217 +#: airtime_mvc/application/controllers/LibraryController.php:246 +#: airtime_mvc/application/controllers/LibraryController.php:265 +#: airtime_mvc/application/controllers/ShowbuilderController.php:202 +#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:19 +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:30 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:27 +#: airtime_mvc/application/services/CalendarService.php:185 +#: airtime_mvc/application/services/CalendarService.php:200 +#: airtime_mvc/application/services/CalendarService.php:205 +msgid "Delete" +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:226 +msgid "Duplicate Playlist" +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:241 +#: airtime_mvc/application/controllers/LibraryController.php:263 +#: airtime_mvc/application/services/CalendarService.php:156 +msgid "Edit" +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:276 +msgid "Soundcloud" +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:282 +#: airtime_mvc/application/services/CalendarService.php:65 +msgid "View on Soundcloud" +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:286 +#: airtime_mvc/application/services/CalendarService.php:70 +msgid "Re-upload to SoundCloud" +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:288 +#: airtime_mvc/application/services/CalendarService.php:70 +msgid "Upload to SoundCloud" +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:295 +msgid "No action available" +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:315 +msgid "You don't have permission to delete selected items." +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:364 +msgid "Could not delete some scheduled files." +msgstr "" + +#: airtime_mvc/application/controllers/LibraryController.php:404 +#, php-format +msgid "Copy of %s" +msgstr "" + +#: airtime_mvc/application/controllers/ShowbuilderController.php:196 +msgid "Select cursor" +msgstr "" + +#: airtime_mvc/application/controllers/ShowbuilderController.php:197 +msgid "Remove cursor" +msgstr "" + +#: airtime_mvc/application/controllers/ShowbuilderController.php:216 +msgid "show does not exist" +msgstr "" + +#: airtime_mvc/application/controllers/PreferenceController.php:74 +msgid "Preferences updated." +msgstr "" + +#: airtime_mvc/application/controllers/PreferenceController.php:125 +msgid "Support setting updated." +msgstr "" + +#: airtime_mvc/application/controllers/PreferenceController.php:137 +#: airtime_mvc/application/configs/navigation.php:70 +msgid "Support Feedback" +msgstr "" + +#: airtime_mvc/application/controllers/PreferenceController.php:336 +msgid "Stream Setting Updated." +msgstr "" + +#: airtime_mvc/application/controllers/PreferenceController.php:369 +msgid "path should be specified" +msgstr "" + +#: airtime_mvc/application/controllers/PreferenceController.php:464 +msgid "Problem with Liquidsoap..." +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:12 +msgid "Now Playing" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:19 +msgid "Add Media" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:26 +msgid "Library" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:33 +msgid "Calendar" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:40 +msgid "System" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:45 +#: airtime_mvc/application/views/scripts/preference/index.phtml:2 +msgid "Preferences" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:50 +msgid "Users" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:57 +msgid "Media Folders" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:64 +msgid "Streams" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:83 +msgid "Listener Stats" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:92 +msgid "History" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:97 +msgid "Playout History" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:104 +msgid "History Templates" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:113 +#: airtime_mvc/application/views/scripts/error/error.phtml:13 +msgid "Help" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:118 +msgid "Getting Started" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:125 +msgid "User Manual" +msgstr "" + +#: airtime_mvc/application/configs/navigation.php:130 +#: airtime_mvc/application/views/scripts/dashboard/about.phtml:2 +msgid "About" +msgstr "" + +#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:4 +msgid "Service" +msgstr "" + +#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:6 +msgid "Uptime" +msgstr "" + +#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:7 +msgid "CPU" +msgstr "" + +#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:8 +msgid "Memory" +msgstr "" + +#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:14 +#, php-format +msgid "%s Version" +msgstr "" + +#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 +msgid "Disk Space" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences.phtml:5 +msgid "Email / Mail Server Settings" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences.phtml:10 +msgid "SoundCloud Settings" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4 +msgid "Repeat Days:" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18 +#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 +msgid "Remove" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41 +#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28 +#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 +#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 +msgid "Add" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:53 +msgid "Connection URL: " +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:2 +msgid "Input Stream Settings" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:109 +msgid "Master Source Connection URL:" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:115 +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:159 +msgid "Override" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:120 +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:164 +msgid "OK" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:120 +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:164 +msgid "RESET" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:153 +msgid "Show Source Connection URL:" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_email_server.phtml:44 +#: airtime_mvc/application/views/scripts/form/preferences_email_server.phtml:74 +#: airtime_mvc/application/views/scripts/form/preferences_email_server.phtml:90 +#: airtime_mvc/application/views/scripts/form/preferences_soundcloud.phtml:44 +#: airtime_mvc/application/views/scripts/form/preferences_soundcloud.phtml:59 +#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:49 +#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:34 +#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:48 +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:51 +#: airtime_mvc/application/views/scripts/form/preferences_general.phtml:97 +msgid "(Required)" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1 +msgid "Register Airtime" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6 +#, php-format +msgid "" +"Help %1$s improve by letting us know how you are using it. This info will be" +" collected regularly in order to enhance your user experience.%2$sClick " +"'Yes, help %1$s' and we'll make sure the features you use are constantly " +"improving." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29 +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:29 +#, php-format +msgid "Click the box below to promote your station on %s." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67 +#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81 +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:66 +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:81 +msgid "(for verification purposes only, will not be published)" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:156 +msgid "Note: Anything larger than 600x600 will be resized." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166 +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:169 +msgid "Show me what I am sending " +msgstr "" + +#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180 +msgid "Terms and Conditions" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/login.phtml:36 +#: airtime_mvc/application/views/scripts/login/password-restore.phtml:3 +msgid "Reset password" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9 +#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27 +msgid "Choose folder" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10 +msgid "Set" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19 +msgid "Current Import Folder:" +msgstr "" + +#: airtime_mvc/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 "" + +#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44 +msgid "Remove watched directory" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49 +msgid "You are not watching any media folders." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4 +msgid "Stream " +msgstr "" + +#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:77 +msgid "Additional Options" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:137 +msgid "" +"The following info will be displayed to listeners in their media player:" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:170 +msgid "(Your radio station website)" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:208 +msgid "Stream URL: " +msgstr "" + +#: airtime_mvc/application/views/scripts/form/daterange.phtml:6 +msgid "Filter History" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7 +msgid "Find Shows" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/showbuilder.phtml:12 +msgid "Filter By Show:" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/edit-user.phtml:1 +#, php-format +msgid "%s's Settings" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:5 +#, php-format +msgid "" +"Help %s improve by letting %s know how you are using it. This information " +"will be collected regularly in order to enhance your user experience.%sClick" +" the 'Send support feedback' box and we'll make sure the features you use " +"are constantly improving." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:46 +msgid "" +"(In order to promote your station, 'Send support feedback' must be enabled)." +msgstr "" + +#: airtime_mvc/application/views/scripts/form/support-setting.phtml:191 +msgid "Sourcefabric Privacy Policy" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45 +msgid "Choose Show Instance" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56 +msgid "Find" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 +msgid "Choose Days:" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:3 +msgid "Smart Block Options" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:39 +msgid "or" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:40 +msgid "and" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:63 +msgid " to " +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:120 +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:133 +msgid "files meet the criteria" +msgstr "" + +#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:127 +msgid "file meet the criteria" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 +msgid "Creating File Summary Template" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 +msgid "Creating Log Sheet Template" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 +msgid "Add more elements" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 +msgid "Add New Field" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 +msgid "Set Default Template" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:4 +msgid "Log Sheet Templates" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:7 +msgid "No Log Sheet Templates" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:31 +msgid "New Log Sheet Template" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:35 +msgid "File Summary Templates" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:38 +msgid "No File Summary Templates" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:62 +msgid "New File Summary Template" +msgstr "" + +#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:5 +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:11 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:11 +msgid "New" +msgstr "" + +#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:8 +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:14 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:14 +msgid "New Playlist" +msgstr "" + +#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:9 +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:15 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:15 +msgid "New Smart Block" +msgstr "" + +#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:10 +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:16 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:16 +msgid "New Webstream" +msgstr "" + +#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:39 +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:53 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:55 +msgid "View / edit description" +msgstr "" + +#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:52 +msgid "Stream URL:" +msgstr "" + +#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:57 +msgid "Default Length:" +msgstr "" + +#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:64 +msgid "No webstream" +msgstr "" + +#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2 +msgid "Stream Settings" +msgstr "" + +#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:13 +msgid "Global Settings" +msgstr "" + +#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88 +msgid "dB" +msgstr "" + +#: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:107 +msgid "Output Stream Settings" +msgstr "" + +#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:3 +#: airtime_mvc/application/views/scripts/library/library.phtml:3 +msgid "File import in progress..." +msgstr "" + +#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:5 +#: airtime_mvc/application/views/scripts/library/library.phtml:10 +msgid "Advanced Search Options" +msgstr "" + +#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23 +msgid "previous" +msgstr "" + +#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28 +msgid "play" +msgstr "" + +#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32 +msgid "pause" +msgstr "" + +#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37 +msgid "next" +msgstr "" + +#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42 +msgid "stop" +msgstr "" + +#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60 +#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90 +msgid "mute" +msgstr "" + +#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63 +#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91 +msgid "unmute" +msgstr "" + +#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69 +msgid "max volume" +msgstr "" + +#: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79 +msgid "Update Required" +msgstr "" + +#: airtime_mvc/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 "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38 +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147 +msgid "Length:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14 +msgid "Sample Rate:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24 +msgid "Isrc Number:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27 +msgid "File Path:" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45 +msgid "Web Stream" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46 +msgid "Dynamic Smart Block" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:47 +msgid "Static Smart Block" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48 +msgid "Audio Track" +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63 +msgid "Playlist Contents: " +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65 +msgid "Static Smart Block Contents: " +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:104 +msgid "Dynamic Smart Block Criteria: " +msgstr "" + +#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137 +msgid "Limit to " +msgstr "" + +#: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2 +msgid "Listener Count Over Time" +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/help.phtml:3 +#, php-format +msgid "Welcome to %s!" +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/help.phtml:4 +#, php-format +msgid "Here's how you can get started using %s to automate your broadcasts: " +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/help.phtml:7 +msgid "" +"Begin by adding your files to the library using the 'Add Media' menu button." +" You can drag and drop your files to this window too." +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/help.phtml:8 +msgid "" +"Create a show by going to 'Calendar' in the menu bar, and then clicking the " +"'+ Show' icon. This can be either a one-time or repeating show. Only admins " +"and program managers can add shows." +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/help.phtml:9 +msgid "" +"Add media to the show by going to your show in the Schedule calendar, left-" +"clicking on it and selecting 'Add / Remove Content'" +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/help.phtml:10 +msgid "" +"Select your media from the left pane and drag them to your show in the right" +" pane." +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/help.phtml:12 +msgid "Then you're good to go!" +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/help.phtml:15 +#, php-format +msgid "For more detailed help, read the %suser manual%s." +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3 +msgid "Share" +msgstr "" + +#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64 +msgid "Select stream:" +msgstr "" + +#: airtime_mvc/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 "" + +#: airtime_mvc/application/views/scripts/dashboard/about.phtml:22 +#, php-format +msgid "%1$s %2$s is distributed under the %3$s" +msgstr "" + +#: airtime_mvc/application/views/scripts/login/password-change.phtml:3 +msgid "New password" +msgstr "" + +#: airtime_mvc/application/views/scripts/login/password-change.phtml:6 +msgid "Please enter and confirm your new password in the fields below." +msgstr "" + +#: airtime_mvc/application/views/scripts/login/password-restore.phtml:7 +msgid "" +"Please enter your account e-mail address. You will receive a link to create " +"a new password via e-mail." +msgstr "" + +#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3 +msgid "Email sent" +msgstr "" + +#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6 +msgid "An email has been sent" +msgstr "" + +#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:7 +msgid "Back to login screen" +msgstr "" + +#: airtime_mvc/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 "" + +#: airtime_mvc/application/views/scripts/partialviews/header.phtml:3 +msgid "Previous:" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/header.phtml:10 +msgid "Next:" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/header.phtml:24 +msgid "Source Streams" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/header.phtml:29 +msgid "Master Source" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/header.phtml:38 +msgid "Show Source" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/header.phtml:45 +msgid "Scheduled Play" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/header.phtml:54 +msgid "ON AIR" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/header.phtml:55 +msgid "Listen" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/header.phtml:59 +msgid "Station time" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3 +msgid "Your trial expires in" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9 +#, php-format +msgid "Purchase your copy of %s" +msgstr "" + +#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9 +msgid "My Account" +msgstr "" + +#: airtime_mvc/application/views/scripts/user/add-user.phtml:3 +msgid "Manage Users" +msgstr "" + +#: airtime_mvc/application/views/scripts/user/add-user.phtml:10 +msgid "New User" +msgstr "" + +#: airtime_mvc/application/views/scripts/user/add-user.phtml:17 +msgid "id" +msgstr "" + +#: airtime_mvc/application/views/scripts/user/add-user.phtml:19 +msgid "First Name" +msgstr "" + +#: airtime_mvc/application/views/scripts/user/add-user.phtml:20 +msgid "Last Name" +msgstr "" + +#: airtime_mvc/application/views/scripts/user/add-user.phtml:21 +msgid "User Type" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:7 +msgid "Log Sheet" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8 +msgid "File Summary" +msgstr "" + +#: airtime_mvc/application/views/scripts/playouthistory/index.phtml:10 +msgid "Show Summary" +msgstr "" + +#: airtime_mvc/application/views/scripts/error/error.phtml:6 +msgid "Zend Framework Default Application" +msgstr "" + +#: airtime_mvc/application/views/scripts/error/error.phtml:10 +msgid "Page not found!" +msgstr "" + +#: airtime_mvc/application/views/scripts/error/error.phtml:11 +msgid "Looks like the page you were looking for doesn't exist!" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:54 +msgid "Expand Static Block" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:59 +msgid "Expand Dynamic Block" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:135 +msgid "Empty smart block" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/update.phtml:137 +msgid "Empty playlist" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:21 +msgid "Empty playlist content" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:21 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:21 +msgid "Clear" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:24 +msgid "Shuffle playlist" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:27 +msgid "Save playlist" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:34 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:31 +msgid "Playlist crossfade" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:67 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:72 +#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19 +msgid "Fade in: " +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:70 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:75 +#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6 +msgid "Fade out: " +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:85 +msgid "No open playlist" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:21 +msgid "Empty smart block content" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:72 +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:75 +#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6 +#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19 +msgid "(ss.t)" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:90 +msgid "No open smart block" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3 +#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3 +msgid "Show Waveform" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5 +msgid "Cue In: " +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5 +#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12 +msgid "(hh:mm:ss.t)" +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12 +msgid "Cue Out: " +msgstr "" + +#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19 +msgid "Original Length:" +msgstr "" + +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6 +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:40 +msgid "Add this show" +msgstr "" + +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6 +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:40 +msgid "Update show" +msgstr "" + +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10 +msgid "What" +msgstr "" + +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 +msgid "When" +msgstr "" + +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:19 +msgid "Live Stream Input" +msgstr "" + +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:23 +msgid "Record & Rebroadcast" +msgstr "" + +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:29 +msgid "Who" +msgstr "" + +#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:33 +msgid "Style" +msgstr "" + +#: airtime_mvc/application/models/ShowBuilder.php:212 +#, php-format +msgid "Rebroadcast of %s from %s" +msgstr "" + +#: airtime_mvc/application/models/Preference.php:650 +msgid "Select Country" +msgstr "" + +#: airtime_mvc/application/models/Webstream.php:157 +msgid "Length needs to be greater than 0 minutes" +msgstr "" + +#: airtime_mvc/application/models/Webstream.php:162 +msgid "Length should be of form \"00h 00m\"" +msgstr "" + +#: airtime_mvc/application/models/Webstream.php:175 +msgid "URL should be of form \"http://domain\"" +msgstr "" + +#: airtime_mvc/application/models/Webstream.php:178 +msgid "URL should be 512 characters or less" +msgstr "" + +#: airtime_mvc/application/models/Webstream.php:184 +msgid "No MIME type found for webstream." +msgstr "" + +#: airtime_mvc/application/models/Webstream.php:200 +msgid "Webstream name cannot be empty" +msgstr "" + +#: airtime_mvc/application/models/Webstream.php:269 +msgid "Could not parse XSPF playlist" +msgstr "" + +#: airtime_mvc/application/models/Webstream.php:281 +msgid "Could not parse PLS playlist" +msgstr "" + +#: airtime_mvc/application/models/Webstream.php:300 +msgid "Could not parse M3U playlist" +msgstr "" + +#: airtime_mvc/application/models/Webstream.php:314 +msgid "Invalid webstream - This appears to be a file download." +msgstr "" + +#: airtime_mvc/application/models/Webstream.php:318 +#, php-format +msgid "Unrecognized stream type: %s" +msgstr "" + +#: airtime_mvc/application/models/MusicDir.php:160 +#, php-format +msgid "%s is already watched." +msgstr "" + +#: airtime_mvc/application/models/MusicDir.php:164 +#, php-format +msgid "%s contains nested watched directory: %s" +msgstr "" + +#: airtime_mvc/application/models/MusicDir.php:168 +#, php-format +msgid "%s is nested within existing watched directory: %s" +msgstr "" + +#: airtime_mvc/application/models/MusicDir.php:189 +#: airtime_mvc/application/models/MusicDir.php:368 +#, php-format +msgid "%s is not a valid directory." +msgstr "" + +#: airtime_mvc/application/models/MusicDir.php:232 +#, php-format +msgid "" +"%s is already set as the current storage dir or in the watched folders list" +msgstr "" + +#: airtime_mvc/application/models/MusicDir.php:386 +#, php-format +msgid "" +"%s is already set as the current storage dir or in the watched folders list." +msgstr "" + +#: airtime_mvc/application/models/MusicDir.php:429 +#, php-format +msgid "%s doesn't exist in the watched list." +msgstr "" + +#: airtime_mvc/application/models/Scheduler.php:73 +msgid "Cannot move items out of linked shows" +msgstr "" + +#: airtime_mvc/application/models/Scheduler.php:119 +msgid "The schedule you're viewing is out of date! (sched mismatch)" +msgstr "" + +#: airtime_mvc/application/models/Scheduler.php:124 +msgid "The schedule you're viewing is out of date! (instance mismatch)" +msgstr "" + +#: airtime_mvc/application/models/Scheduler.php:132 +#: airtime_mvc/application/models/Scheduler.php:460 +#: airtime_mvc/application/models/Scheduler.php:498 +msgid "The schedule you're viewing is out of date!" +msgstr "" + +#: airtime_mvc/application/models/Scheduler.php:142 +#, php-format +msgid "You are not allowed to schedule show %s." +msgstr "" + +#: airtime_mvc/application/models/Scheduler.php:146 +msgid "You cannot add files to recording shows." +msgstr "" + +#: airtime_mvc/application/models/Scheduler.php:152 +#, php-format +msgid "The show %s is over and cannot be scheduled." +msgstr "" + +#: airtime_mvc/application/models/Scheduler.php:159 +#, php-format +msgid "The show %s has been previously updated!" +msgstr "" + +#: airtime_mvc/application/models/Scheduler.php:178 +msgid "" +"Content in linked shows must be scheduled before or after any one is " +"broadcasted" +msgstr "" + +#: airtime_mvc/application/models/Scheduler.php:195 +msgid "Cannot schedule a playlist that contains missing files." +msgstr "" + +#: airtime_mvc/application/models/Scheduler.php:216 +#: airtime_mvc/application/models/Scheduler.php:305 +msgid "A selected File does not exist!" +msgstr "" + +#: airtime_mvc/application/models/Playlist.php:812 +#: airtime_mvc/application/models/Block.php:833 +msgid "Cue in and cue out are null." +msgstr "" + +#: airtime_mvc/application/models/Playlist.php:843 +#: airtime_mvc/application/models/Playlist.php:868 +#: airtime_mvc/application/models/Block.php:879 +#: airtime_mvc/application/models/Block.php:900 +msgid "Can't set cue in to be larger than cue out." +msgstr "" + +#: airtime_mvc/application/models/Playlist.php:851 +#: airtime_mvc/application/models/Playlist.php:895 +#: airtime_mvc/application/models/Block.php:868 +#: airtime_mvc/application/models/Block.php:924 +msgid "Can't set cue out to be greater than file length." +msgstr "" + +#: airtime_mvc/application/models/Playlist.php:887 +#: airtime_mvc/application/models/Block.php:935 +msgid "Can't set cue out to be smaller than cue in." +msgstr "" + +#: airtime_mvc/application/models/StoredFile.php:1003 +msgid "Failed to create 'organize' directory." +msgstr "" + +#: airtime_mvc/application/models/StoredFile.php:1017 +#, php-format +msgid "" +"The file was not uploaded, there is %s MB of disk space left and the file " +"you are uploading has a size of %s MB." +msgstr "" + +#: airtime_mvc/application/models/StoredFile.php:1026 +msgid "" +"This file appears to be corrupted and will not be added to media library." +msgstr "" + +#: airtime_mvc/application/models/StoredFile.php:1065 +msgid "" +"The file was not uploaded, this error can occur if the computer hard drive " +"does not have enough disk space or the stor directory does not have correct " +"write permissions." +msgstr "" + +#: airtime_mvc/application/models/Show.php:180 +msgid "Shows can have a max length of 24 hours." +msgstr "" + +#: airtime_mvc/application/models/Show.php:289 +msgid "" +"Cannot schedule overlapping shows.\n" +"Note: Resizing a repeating show affects all of its repeats." +msgstr "" + +#: airtime_mvc/application/models/Auth.php:33 +#, php-format +msgid "" +"Hi %s, \n" +"\n" +"Click this link to reset your password: " +msgstr "" + +#: airtime_mvc/application/models/Auth.php:36 +#, php-format +msgid "%s Password Reset" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:77 +#: airtime_mvc/application/services/CalendarService.php:120 +msgid "Show Content" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:109 +msgid "Remove All Content" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:130 +#: airtime_mvc/application/services/CalendarService.php:134 +msgid "Cancel Current Show" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:151 +#: airtime_mvc/application/services/CalendarService.php:166 +msgid "Edit This Instance" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:161 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:190 +msgid "Delete This Instance" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:195 +msgid "Delete This Instance and All Following" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:249 +msgid "Permission denied" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:253 +msgid "Can't drag and drop repeating shows" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:262 +msgid "Can't move a past show" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:297 +msgid "Can't move show into past" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:317 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:327 +msgid "Show was deleted because recorded show does not exist!" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:334 +msgid "Must wait 1 hour to rebroadcast." +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1119 +msgid "Track" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1167 +msgid "Played" +msgstr "" + +#: airtime_mvc/application/common/DateHelper.php:213 +#, php-format +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "" + +#: airtime_mvc/application/common/DateHelper.php:216 +#, php-format +msgid "%s-%s-%s is not a valid date" +msgstr "" + +#: airtime_mvc/application/common/DateHelper.php:240 +#, php-format +msgid "%s:%s:%s is not a valid time" +msgstr "" + +#: airtime_mvc/library/propel/contrib/pear/HTML_QuickForm_Propel/Propel.php:512 +msgid "Please selection an option" +msgstr "" + +#: airtime_mvc/library/propel/contrib/pear/HTML_QuickForm_Propel/Propel.php:531 +msgid "No Records" +msgstr "" From a286597826533287be4fb3a08f592302dff77f21 Mon Sep 17 00:00:00 2001 From: localizer Date: Fri, 17 Apr 2015 13:03:07 +0000 Subject: [PATCH 27/35] updated translation resources --- airtime_mvc/locale/tr/LC_MESSAGES/airtime.mo | Bin 460 -> 481 bytes airtime_mvc/locale/tr/LC_MESSAGES/airtime.po | 5 +++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airtime_mvc/locale/tr/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/tr/LC_MESSAGES/airtime.mo index 0f6caebe263be6d2588877044083000fabde4536..aeae3430b85e644fd7856d710f45f150d8421216 100644 GIT binary patch delta 96 zcmX@Z{E&Hq3ghyLs;z;hx&|h?hUN-}##RPK+6F+t<&#)kq8n0_m{**WSdw34rQoZl xpm2CvZfcQ&`{8Xl>8UxH3O0#V+9e<*nQ5sNddc~@4$1l18G3oCB@>@L0|3xWA@BeI delta 75 zcmaFJe1>^~3ge`Ss;xFAx(0^2M&=5J23AG}+6F+t<&#)kq8n0_m{**WSdw34rQjCo dEqz&;u7Q<96a&&GXOiX7ZCse diff --git a/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po b/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po index fbfe18b3d9..852f6b1612 100644 --- a/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po @@ -3,13 +3,14 @@ # 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: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2014-01-27 10:20+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2015-04-17 13:02+0000\n" +"Last-Translator: M. Ömer Gölgeli \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/airtime/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" From 4bf234d108ec1a8a89648bad9d272bf485a512af Mon Sep 17 00:00:00 2001 From: localizer Date: Fri, 17 Apr 2015 20:35:08 +0000 Subject: [PATCH 28/35] updated translation resources --- .../locale/nl_NL/LC_MESSAGES/airtime.mo | Bin 44212 -> 64186 bytes .../locale/nl_NL/LC_MESSAGES/airtime.po | 464 +++++++++--------- airtime_mvc/locale/tr/LC_MESSAGES/airtime.mo | Bin 481 -> 481 bytes airtime_mvc/locale/tr/LC_MESSAGES/airtime.po | 2 +- 4 files changed, 233 insertions(+), 233 deletions(-) diff --git a/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.mo index 1561dd4865fc2a562b918691f9f19c8e81e5be1f..4c3565183c494f2f9efb1fd2ce37265eeaca39f3 100644 GIT binary patch literal 64186 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 fEP\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/airtime/language/nl_NL/)\n" "MIME-Version: 1.0\n" @@ -2339,7 +2339,7 @@ msgstr "Toegang playout geschiedenis" #: airtime_mvc/application/controllers/LocaleController.php:333 msgid "View listener stats" -msgstr "Weergave luisteraar stats" +msgstr "Weergave luisteraar status" #: airtime_mvc/application/controllers/LocaleController.php:335 msgid "Show / hide columns" @@ -2650,161 +2650,161 @@ msgstr "Toevoegen aan slimme blok" #: airtime_mvc/application/services/CalendarService.php:200 #: airtime_mvc/application/services/CalendarService.php:205 msgid "Delete" -msgstr "" +msgstr "Verwijderen" #: airtime_mvc/application/controllers/LibraryController.php:226 msgid "Duplicate Playlist" -msgstr "" +msgstr "Dubbele afspeellijst" #: airtime_mvc/application/controllers/LibraryController.php:241 #: airtime_mvc/application/controllers/LibraryController.php:263 #: airtime_mvc/application/services/CalendarService.php:156 msgid "Edit" -msgstr "" +msgstr "Bewerken" #: airtime_mvc/application/controllers/LibraryController.php:276 msgid "Soundcloud" -msgstr "" +msgstr "SoundCloud" #: airtime_mvc/application/controllers/LibraryController.php:282 #: airtime_mvc/application/services/CalendarService.php:65 msgid "View on Soundcloud" -msgstr "" +msgstr "Weergave op Soundcloud" #: airtime_mvc/application/controllers/LibraryController.php:286 #: airtime_mvc/application/services/CalendarService.php:70 msgid "Re-upload to SoundCloud" -msgstr "" +msgstr "Opnieuw uploaden naar SoundCloud" #: airtime_mvc/application/controllers/LibraryController.php:288 #: airtime_mvc/application/services/CalendarService.php:70 msgid "Upload to SoundCloud" -msgstr "" +msgstr "Uploaden naar SoundCloud" #: airtime_mvc/application/controllers/LibraryController.php:295 msgid "No action available" -msgstr "" +msgstr "Geen actie beschikbaar" #: airtime_mvc/application/controllers/LibraryController.php:315 msgid "You don't have permission to delete selected items." -msgstr "" +msgstr "Je hebt geen toestemming om geselecteerde items te verwijderen" #: airtime_mvc/application/controllers/LibraryController.php:364 msgid "Could not delete some scheduled files." -msgstr "" +msgstr "Sommige geplande bestanden kan geen gegevens verwijderen." #: airtime_mvc/application/controllers/LibraryController.php:404 #, php-format msgid "Copy of %s" -msgstr "" +msgstr "Kopie van %s" #: airtime_mvc/application/controllers/ShowbuilderController.php:196 msgid "Select cursor" -msgstr "" +msgstr "Selecteer cursor" #: airtime_mvc/application/controllers/ShowbuilderController.php:197 msgid "Remove cursor" -msgstr "" +msgstr "Cursor verwijderen" #: airtime_mvc/application/controllers/ShowbuilderController.php:216 msgid "show does not exist" -msgstr "" +msgstr "show bestaat niet" #: airtime_mvc/application/controllers/PreferenceController.php:74 msgid "Preferences updated." -msgstr "" +msgstr "Voorkeuren bijgewerkt." #: airtime_mvc/application/controllers/PreferenceController.php:125 msgid "Support setting updated." -msgstr "" +msgstr "Instelling bijgewerkt ondersteunt." #: airtime_mvc/application/controllers/PreferenceController.php:137 #: airtime_mvc/application/configs/navigation.php:70 msgid "Support Feedback" -msgstr "" +msgstr "Ondersteuning Feedback" #: airtime_mvc/application/controllers/PreferenceController.php:336 msgid "Stream Setting Updated." -msgstr "" +msgstr "Stream vaststelling van bijgewerkte." #: airtime_mvc/application/controllers/PreferenceController.php:369 msgid "path should be specified" -msgstr "" +msgstr "pad moet worden opgegeven" #: airtime_mvc/application/controllers/PreferenceController.php:464 msgid "Problem with Liquidsoap..." -msgstr "" +msgstr "Probleem met Liquidsoap..." #: airtime_mvc/application/configs/navigation.php:12 msgid "Now Playing" -msgstr "" +msgstr "Nu spelen" #: airtime_mvc/application/configs/navigation.php:19 msgid "Add Media" -msgstr "" +msgstr "Toevoeg Media" #: airtime_mvc/application/configs/navigation.php:26 msgid "Library" -msgstr "" +msgstr "Bibliotheek" #: airtime_mvc/application/configs/navigation.php:33 msgid "Calendar" -msgstr "" +msgstr "Calender" #: airtime_mvc/application/configs/navigation.php:40 msgid "System" -msgstr "" +msgstr "systeem" #: airtime_mvc/application/configs/navigation.php:45 #: airtime_mvc/application/views/scripts/preference/index.phtml:2 msgid "Preferences" -msgstr "" +msgstr "Voorkeuren" #: airtime_mvc/application/configs/navigation.php:50 msgid "Users" -msgstr "" +msgstr "gebruikers" #: airtime_mvc/application/configs/navigation.php:57 msgid "Media Folders" -msgstr "" +msgstr "media bestanden" #: airtime_mvc/application/configs/navigation.php:64 msgid "Streams" -msgstr "" +msgstr "streams" #: airtime_mvc/application/configs/navigation.php:83 msgid "Listener Stats" -msgstr "" +msgstr "luister status" #: airtime_mvc/application/configs/navigation.php:92 msgid "History" -msgstr "" +msgstr "Historie" #: airtime_mvc/application/configs/navigation.php:97 msgid "Playout History" -msgstr "" +msgstr "Playout geschiedenis" #: airtime_mvc/application/configs/navigation.php:104 msgid "History Templates" -msgstr "" +msgstr "Geschiedenis sjablonen" #: airtime_mvc/application/configs/navigation.php:113 #: airtime_mvc/application/views/scripts/error/error.phtml:13 msgid "Help" -msgstr "" +msgstr "Help" #: airtime_mvc/application/configs/navigation.php:118 msgid "Getting Started" -msgstr "" +msgstr "Aan de slag" #: airtime_mvc/application/configs/navigation.php:125 msgid "User Manual" -msgstr "" +msgstr "Gebruikershandleiding" #: airtime_mvc/application/configs/navigation.php:130 #: airtime_mvc/application/views/scripts/dashboard/about.phtml:2 msgid "About" -msgstr "" +msgstr "Over" #: airtime_mvc/application/views/scripts/systemstatus/index.phtml:4 msgid "Service" @@ -2812,11 +2812,11 @@ msgstr "Dienst" #: airtime_mvc/application/views/scripts/systemstatus/index.phtml:6 msgid "Uptime" -msgstr "" +msgstr "Uptime" #: airtime_mvc/application/views/scripts/systemstatus/index.phtml:7 msgid "CPU" -msgstr "" +msgstr "CPU" #: airtime_mvc/application/views/scripts/systemstatus/index.phtml:8 msgid "Memory" @@ -2825,7 +2825,7 @@ msgstr "Geheugen" #: airtime_mvc/application/views/scripts/systemstatus/index.phtml:14 #, php-format msgid "%s Version" -msgstr "" +msgstr "%s versie" #: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 msgid "Disk Space" @@ -2833,58 +2833,58 @@ msgstr "Hardeschijf ruimte" #: airtime_mvc/application/views/scripts/form/preferences.phtml:5 msgid "Email / Mail Server Settings" -msgstr "" +msgstr "Email / Mail serverinstellingen" #: airtime_mvc/application/views/scripts/form/preferences.phtml:10 msgid "SoundCloud Settings" -msgstr "" +msgstr "SoundCloud instellingen" #: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4 msgid "Repeat Days:" -msgstr "" +msgstr "Herhaal dagen:" #: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18 #: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 msgid "Remove" -msgstr "" +msgstr "verwijderen" #: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41 #: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28 #: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 #: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 msgid "Add" -msgstr "" +msgstr "toevoegen" #: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:53 msgid "Connection URL: " -msgstr "" +msgstr "Verbindings URL:" #: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:2 msgid "Input Stream Settings" -msgstr "" +msgstr "Input Stream instellingen" #: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:109 msgid "Master Source Connection URL:" -msgstr "" +msgstr "Master bron verbindings URL:" #: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:115 #: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:159 msgid "Override" -msgstr "" +msgstr "Overschrijven" #: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:120 #: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:164 msgid "OK" -msgstr "" +msgstr "Oke" #: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:120 #: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:164 msgid "RESET" -msgstr "" +msgstr "RESET" #: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:153 msgid "Show Source Connection URL:" -msgstr "" +msgstr "Toon bron verbinding URL:" #: airtime_mvc/application/views/scripts/form/preferences_email_server.phtml:44 #: airtime_mvc/application/views/scripts/form/preferences_email_server.phtml:74 @@ -2897,11 +2897,11 @@ msgstr "" #: airtime_mvc/application/views/scripts/form/support-setting.phtml:51 #: airtime_mvc/application/views/scripts/form/preferences_general.phtml:97 msgid "(Required)" -msgstr "" +msgstr "(Vereist)" #: airtime_mvc/application/views/scripts/form/register-dialog.phtml:1 msgid "Register Airtime" -msgstr "" +msgstr "Airtime registreren" #: airtime_mvc/application/views/scripts/form/register-dialog.phtml:6 #, php-format @@ -2910,105 +2910,105 @@ msgid "" " collected regularly in order to enhance your user experience.%2$sClick " "'Yes, help %1$s' and we'll make sure the features you use are constantly " "improving." -msgstr "" +msgstr "Helpen %1$s verbeteren door ons heeft laten weten hoe u het gebruikt. Deze informatie zal worden verzameld regelmatig teneinde uw gebruiker ervaring.%2$s Click 'Ja, help %1$s' en we zullen ervoor zorgen dat zijn voortdurend verbeteren van de functies die u gebruiken." #: airtime_mvc/application/views/scripts/form/register-dialog.phtml:29 #: airtime_mvc/application/views/scripts/form/support-setting.phtml:29 #, php-format msgid "Click the box below to promote your station on %s." -msgstr "" +msgstr "Klik in het vak hieronder om uw station op %s." #: airtime_mvc/application/views/scripts/form/register-dialog.phtml:67 #: airtime_mvc/application/views/scripts/form/register-dialog.phtml:81 #: airtime_mvc/application/views/scripts/form/support-setting.phtml:66 #: airtime_mvc/application/views/scripts/form/support-setting.phtml:81 msgid "(for verification purposes only, will not be published)" -msgstr "" +msgstr "(voor verificatie doeleinden alleen, zal niet worden gepubliceerd)" #: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 #: airtime_mvc/application/views/scripts/form/support-setting.phtml:156 msgid "Note: Anything larger than 600x600 will be resized." -msgstr "" +msgstr "Opmerking: Om het even wat groter zijn dan 600 x 600 zal worden aangepast." #: airtime_mvc/application/views/scripts/form/register-dialog.phtml:166 #: airtime_mvc/application/views/scripts/form/support-setting.phtml:169 msgid "Show me what I am sending " -msgstr "" +msgstr "Toon mij wat ik ben verzenden" #: airtime_mvc/application/views/scripts/form/register-dialog.phtml:180 msgid "Terms and Conditions" -msgstr "" +msgstr "Algemene voorwaarden" #: airtime_mvc/application/views/scripts/form/login.phtml:36 #: airtime_mvc/application/views/scripts/login/password-restore.phtml:3 msgid "Reset password" -msgstr "" +msgstr "Reset wachtwoord" #: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9 #: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27 msgid "Choose folder" -msgstr "" +msgstr "Kies map" #: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:10 msgid "Set" -msgstr "" +msgstr "Instellen" #: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:19 msgid "Current Import Folder:" -msgstr "" +msgstr "Huidige Import map:" #: airtime_mvc/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 "" +msgstr "Scannen van gevolgde directory (dit is handig als het netwerk mount is en gesynchroniseerd met %s worden kan)" #: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:44 msgid "Remove watched directory" -msgstr "" +msgstr "gecontroleerde map verwijderen" #: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:49 msgid "You are not watching any media folders." -msgstr "" +msgstr "Niet bekijkt u alle Mediamappen." #: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:4 msgid "Stream " -msgstr "" +msgstr "Stream" #: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:77 msgid "Additional Options" -msgstr "" +msgstr "Extra opties" #: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:137 msgid "" "The following info will be displayed to listeners in their media player:" -msgstr "" +msgstr "De volgende info worden getoond aan luisteraars in hun mediaspeler" #: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:170 msgid "(Your radio station website)" -msgstr "" +msgstr "(Uw radio station website)" #: airtime_mvc/application/views/scripts/form/stream-setting-form.phtml:208 msgid "Stream URL: " -msgstr "" +msgstr "Stream URL:" #: airtime_mvc/application/views/scripts/form/daterange.phtml:6 msgid "Filter History" -msgstr "" +msgstr "Filter geschiedenis" #: airtime_mvc/application/views/scripts/form/showbuilder.phtml:7 msgid "Find Shows" -msgstr "" +msgstr "zoek Shows" #: airtime_mvc/application/views/scripts/form/showbuilder.phtml:12 msgid "Filter By Show:" -msgstr "" +msgstr "Filter Door Show:" #: airtime_mvc/application/views/scripts/form/edit-user.phtml:1 #, php-format msgid "%s's Settings" -msgstr "" +msgstr "%s van instellingen" #: airtime_mvc/application/views/scripts/form/support-setting.phtml:5 #, php-format @@ -3017,28 +3017,28 @@ msgid "" "will be collected regularly in order to enhance your user experience.%sClick" " the 'Send support feedback' box and we'll make sure the features you use " "are constantly improving." -msgstr "" +msgstr "Helpen %s verbeteren door te laten %s weten hoe u het gebruikt. Deze informatie zal regelmatig worden verzameld teneinde uw gebruiker ervaring.%s Click die het vak 'Feedback verzenden ondersteuning' en we zullen ervoor zijn voortdurend verbeteren van de functies die u gebruiken." #: airtime_mvc/application/views/scripts/form/support-setting.phtml:46 msgid "" "(In order to promote your station, 'Send support feedback' must be enabled)." -msgstr "" +msgstr "(Ter bevordering van uw station, 'Feedback verzenden ondersteuning' moet worden ingeschakeld)." #: airtime_mvc/application/views/scripts/form/support-setting.phtml:191 msgid "Sourcefabric Privacy Policy" -msgstr "" +msgstr "Sourcefabric privacybeleid" #: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:45 msgid "Choose Show Instance" -msgstr "" +msgstr "Kies show exemplaar" #: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:56 msgid "Find" -msgstr "" +msgstr "Zoeken" #: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:4 msgid "Choose Days:" -msgstr "" +msgstr "Kies dagen:" #: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:3 msgid "Smart Block Options" @@ -3059,55 +3059,55 @@ msgstr "tot" #: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:120 #: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:133 msgid "files meet the criteria" -msgstr "" +msgstr "bestanden voldoen aan de criteria" #: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:127 msgid "file meet the criteria" -msgstr "" +msgstr "bestand voldoen aan de criteria" #: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:2 msgid "Creating File Summary Template" -msgstr "" +msgstr "Bestand samenvatting sjabloon maken" #: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:4 msgid "Creating Log Sheet Template" -msgstr "" +msgstr "Log werkbladsjabloon maken" #: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:46 msgid "Add more elements" -msgstr "" +msgstr "Meer elementen toevoegen" #: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:67 msgid "Add New Field" -msgstr "" +msgstr "Nieuw veld toevoegen" #: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:83 msgid "Set Default Template" -msgstr "" +msgstr "Standaardsjabloon" #: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:4 msgid "Log Sheet Templates" -msgstr "" +msgstr "Log blad sjablonen" #: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:7 msgid "No Log Sheet Templates" -msgstr "" +msgstr "Geen Log blad sjablonen" #: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:31 msgid "New Log Sheet Template" -msgstr "" +msgstr "Nieuwe Log werkbladsjabloon" #: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:35 msgid "File Summary Templates" -msgstr "" +msgstr "Bestand samenvatting sjablonen" #: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:38 msgid "No File Summary Templates" -msgstr "" +msgstr "Geen bestand samenvatting sjablonen" #: airtime_mvc/application/views/scripts/playouthistorytemplate/index.phtml:62 msgid "New File Summary Template" -msgstr "" +msgstr "Nieuwe bestand samenvatting sjabloon" #: airtime_mvc/application/views/scripts/webstream/webstream.phtml:5 #: airtime_mvc/application/views/scripts/playlist/playlist.phtml:11 @@ -3141,7 +3141,7 @@ msgstr "Bekijk / bewerk beschrijving" #: airtime_mvc/application/views/scripts/webstream/webstream.phtml:52 msgid "Stream URL:" -msgstr "" +msgstr "Stream URL:" #: airtime_mvc/application/views/scripts/webstream/webstream.phtml:57 msgid "Default Length:" @@ -3153,24 +3153,24 @@ msgstr "Geen webstream" #: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:2 msgid "Stream Settings" -msgstr "" +msgstr "Instellingen voor stream" #: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:13 msgid "Global Settings" -msgstr "" +msgstr "Globale instellingen" #: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:88 msgid "dB" -msgstr "" +msgstr "dB" #: airtime_mvc/application/views/scripts/preference/stream-setting.phtml:107 msgid "Output Stream Settings" -msgstr "" +msgstr "Instellingen voor uitvoerstroom" #: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:3 #: airtime_mvc/application/views/scripts/library/library.phtml:3 msgid "File import in progress..." -msgstr "" +msgstr "Bestand importeren in vooruitgang..." #: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:5 #: airtime_mvc/application/views/scripts/library/library.phtml:10 @@ -3179,19 +3179,19 @@ msgstr "Geadvanceerde zoek opties" #: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23 msgid "previous" -msgstr "" +msgstr "vorige" #: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28 msgid "play" -msgstr "" +msgstr "spelen" #: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:32 msgid "pause" -msgstr "" +msgstr "pauze" #: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37 msgid "next" -msgstr "" +msgstr "volgende" #: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42 msgid "stop" @@ -3205,45 +3205,45 @@ msgstr "dempen" #: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:63 #: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:91 msgid "unmute" -msgstr "" +msgstr "microfoon" #: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:69 msgid "max volume" -msgstr "" +msgstr "Max volume" #: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:79 msgid "Update Required" -msgstr "" +msgstr "Update vereist" #: airtime_mvc/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 "" +msgstr "Om te spelen de media moet u uw browser bijwerkt naar een recente versie of update uw %sFlash plugin%s." #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:13 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:36 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:38 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:147 msgid "Length:" -msgstr "" +msgstr "Lengte:" #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:14 msgid "Sample Rate:" -msgstr "" +msgstr "Sample Rate:" #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24 msgid "Isrc Number:" -msgstr "" +msgstr "ISRC nummer:" #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27 msgid "File Path:" -msgstr "" +msgstr "Bestandspad:" #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:45 msgid "Web Stream" -msgstr "" +msgstr "Web Stream" #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:46 msgid "Dynamic Smart Block" @@ -3255,11 +3255,11 @@ msgstr "Statisch slimme blok" #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:48 msgid "Audio Track" -msgstr "" +msgstr "Audiotrack" #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:63 msgid "Playlist Contents: " -msgstr "" +msgstr "Inhoud van de afspeellijst:" #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:65 msgid "Static Smart Block Contents: " @@ -3271,55 +3271,55 @@ msgstr "Dynamische slimme blok Criteria:" #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:137 msgid "Limit to " -msgstr "" +msgstr "Beperken tot" #: airtime_mvc/application/views/scripts/listenerstat/index.phtml:2 msgid "Listener Count Over Time" -msgstr "" +msgstr "Luisteraar Telling Over Time" #: airtime_mvc/application/views/scripts/dashboard/help.phtml:3 #, php-format msgid "Welcome to %s!" -msgstr "" +msgstr "Welkom tot %s!" #: airtime_mvc/application/views/scripts/dashboard/help.phtml:4 #, php-format msgid "Here's how you can get started using %s to automate your broadcasts: " -msgstr "" +msgstr "Hier is hoe je kunt krijgen gestart met behulp van %s te automatiseren uw uitzendingen:" #: airtime_mvc/application/views/scripts/dashboard/help.phtml:7 msgid "" "Begin by adding your files to the library using the 'Add Media' menu button." " You can drag and drop your files to this window too." -msgstr "" +msgstr "Beginnen door uw bestanden toe te voegen aan de bibliotheek met behulp van de knop 'Media toevoegen' menu. U kunt slepen en neerzetten bestanden naar dit venster ook." #: airtime_mvc/application/views/scripts/dashboard/help.phtml:8 msgid "" "Create a show by going to 'Calendar' in the menu bar, and then clicking the " "'+ Show' icon. This can be either a one-time or repeating show. Only admins " "and program managers can add shows." -msgstr "" +msgstr "Maak een voorstelling door te gaan naar 'Agenda' in de menubalk, en vervolgens te klikken op het pictogram '+ weergeven'. Dit kan een eenmalige of herhalende show. Alleen beheerders en programma managers kunnen toont toevoegen." #: airtime_mvc/application/views/scripts/dashboard/help.phtml:9 msgid "" "Add media to the show by going to your show in the Schedule calendar, left-" "clicking on it and selecting 'Add / Remove Content'" -msgstr "" +msgstr "Media toevoegen aan de show door te gaan naar je show in de kalender van de planning, links op het te klikken en te selecteren 'toevoegen / verwijderen inhoud'" #: airtime_mvc/application/views/scripts/dashboard/help.phtml:10 msgid "" "Select your media from the left pane and drag them to your show in the right" " pane." -msgstr "" +msgstr "Selecteer uw media in het linkerdeelvenster en sleep ze naar je show in het rechterdeelvenster." #: airtime_mvc/application/views/scripts/dashboard/help.phtml:12 msgid "Then you're good to go!" -msgstr "" +msgstr "Dan bent u goed om te gaan!" #: airtime_mvc/application/views/scripts/dashboard/help.phtml:15 #, php-format msgid "For more detailed help, read the %suser manual%s." -msgstr "" +msgstr "Voor meer gedetailleerde hulp, lees de %sgebruikershandleiding%s." #: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3 msgid "Share" @@ -3334,12 +3334,12 @@ msgstr "Selecteer stream:" msgid "" "%1$s %2$s, the open radio software for scheduling and remote station " "management." -msgstr "" +msgstr "%1$s %2$s, de open radio software voor planning en extern beheer van het station." #: airtime_mvc/application/views/scripts/dashboard/about.phtml:22 #, php-format msgid "%1$s %2$s is distributed under the %3$s" -msgstr "" +msgstr "%1$s %2$s wordt gedistribueerd onder de %3$s" #: airtime_mvc/application/views/scripts/login/password-change.phtml:3 msgid "New password" @@ -3347,21 +3347,21 @@ msgstr "Nieuw wachtwoord" #: airtime_mvc/application/views/scripts/login/password-change.phtml:6 msgid "Please enter and confirm your new password in the fields below." -msgstr "" +msgstr "Voer in en bevestig uw nieuwe wachtwoord in de velden hieronder." #: airtime_mvc/application/views/scripts/login/password-restore.phtml:7 msgid "" "Please enter your account e-mail address. You will receive a link to create " "a new password via e-mail." -msgstr "" +msgstr "Voer het e-mailadres van uw account. U ontvangt een link om een nieuw wachtwoord per e-mail." #: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:3 msgid "Email sent" -msgstr "" +msgstr "E-mail is verzonden" #: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:6 msgid "An email has been sent" -msgstr "" +msgstr "Een e-mail is verzonden" #: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:7 msgid "Back to login screen" @@ -3372,7 +3372,7 @@ msgstr "Terug naar het inlog scherm" msgid "" "Welcome to the %s demo! You can log in using the username 'admin' and the " "password 'admin'." -msgstr "" +msgstr "Welkom op de %s demo! U kunt zich aanmelden met de gebruikersnaam 'admin' en het wachtwoord 'admin'." #: airtime_mvc/application/views/scripts/partialviews/header.phtml:3 msgid "Previous:" @@ -3388,7 +3388,7 @@ msgstr "Bron Streams" #: airtime_mvc/application/views/scripts/partialviews/header.phtml:29 msgid "Master Source" -msgstr "" +msgstr "Master bron" #: airtime_mvc/application/views/scripts/partialviews/header.phtml:38 msgid "Show Source" @@ -3396,11 +3396,11 @@ msgstr "Bron weergeven" #: airtime_mvc/application/views/scripts/partialviews/header.phtml:45 msgid "Scheduled Play" -msgstr "" +msgstr "Geplande Play" #: airtime_mvc/application/views/scripts/partialviews/header.phtml:54 msgid "ON AIR" -msgstr "" +msgstr "ON AIR" #: airtime_mvc/application/views/scripts/partialviews/header.phtml:55 msgid "Listen" @@ -3408,16 +3408,16 @@ msgstr "Luister" #: airtime_mvc/application/views/scripts/partialviews/header.phtml:59 msgid "Station time" -msgstr "" +msgstr "Station tijd" #: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:3 msgid "Your trial expires in" -msgstr "" +msgstr "Uw proefperiode verloopt in" #: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9 #, php-format msgid "Purchase your copy of %s" -msgstr "" +msgstr "Koop uw kopie van %s" #: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9 msgid "My Account" @@ -3425,59 +3425,59 @@ msgstr "Mijn account" #: airtime_mvc/application/views/scripts/user/add-user.phtml:3 msgid "Manage Users" -msgstr "" +msgstr "Gebruikers beheren" #: airtime_mvc/application/views/scripts/user/add-user.phtml:10 msgid "New User" -msgstr "" +msgstr "Nieuwe gebruiker" #: airtime_mvc/application/views/scripts/user/add-user.phtml:17 msgid "id" -msgstr "" +msgstr "id" #: airtime_mvc/application/views/scripts/user/add-user.phtml:19 msgid "First Name" -msgstr "" +msgstr "Voornaam" #: airtime_mvc/application/views/scripts/user/add-user.phtml:20 msgid "Last Name" -msgstr "" +msgstr "Achternaam" #: airtime_mvc/application/views/scripts/user/add-user.phtml:21 msgid "User Type" -msgstr "" +msgstr "Gebruikerstype" #: airtime_mvc/application/views/scripts/playouthistory/index.phtml:7 msgid "Log Sheet" -msgstr "" +msgstr "Log blad" #: airtime_mvc/application/views/scripts/playouthistory/index.phtml:8 msgid "File Summary" -msgstr "" +msgstr "Bestand samenvatting" #: airtime_mvc/application/views/scripts/playouthistory/index.phtml:10 msgid "Show Summary" -msgstr "" +msgstr "Samenvatting weergeven" #: airtime_mvc/application/views/scripts/error/error.phtml:6 msgid "Zend Framework Default Application" -msgstr "" +msgstr "Zend Framework standaard toepassing" #: airtime_mvc/application/views/scripts/error/error.phtml:10 msgid "Page not found!" -msgstr "" +msgstr "Pagina niet gevonden!" #: airtime_mvc/application/views/scripts/error/error.phtml:11 msgid "Looks like the page you were looking for doesn't exist!" -msgstr "" +msgstr "Het lijkt erop dat de pagina die u zocht bestaat niet!" #: airtime_mvc/application/views/scripts/playlist/update.phtml:54 msgid "Expand Static Block" -msgstr "" +msgstr "Statisch blok uitbreiden" #: airtime_mvc/application/views/scripts/playlist/update.phtml:59 msgid "Expand Dynamic Block" -msgstr "" +msgstr "Dynamische blok uitbreiden" #: airtime_mvc/application/views/scripts/playlist/update.phtml:135 msgid "Empty smart block" @@ -3485,29 +3485,29 @@ msgstr "Lege slimme blok" #: airtime_mvc/application/views/scripts/playlist/update.phtml:137 msgid "Empty playlist" -msgstr "" +msgstr "Lege afspeellijst" #: airtime_mvc/application/views/scripts/playlist/playlist.phtml:21 msgid "Empty playlist content" -msgstr "" +msgstr "Lege afspeellijst inhoud" #: airtime_mvc/application/views/scripts/playlist/playlist.phtml:21 #: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:21 msgid "Clear" -msgstr "" +msgstr "Wissen" #: airtime_mvc/application/views/scripts/playlist/playlist.phtml:24 msgid "Shuffle playlist" -msgstr "" +msgstr "Shuffle afspeellijst" #: airtime_mvc/application/views/scripts/playlist/playlist.phtml:27 msgid "Save playlist" -msgstr "" +msgstr "Afspeellijst opslaan" #: airtime_mvc/application/views/scripts/playlist/playlist.phtml:34 #: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:31 msgid "Playlist crossfade" -msgstr "" +msgstr "Afspeellijst crossfade" #: airtime_mvc/application/views/scripts/playlist/playlist.phtml:67 #: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:72 @@ -3519,11 +3519,11 @@ msgstr "Fade in:" #: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:75 #: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6 msgid "Fade out: " -msgstr "" +msgstr "Fade out:" #: airtime_mvc/application/views/scripts/playlist/playlist.phtml:85 msgid "No open playlist" -msgstr "" +msgstr "Geen open afspeellijst" #: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:21 msgid "Empty smart block content" @@ -3534,7 +3534,7 @@ msgstr "Lege slimme blok inhoud" #: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6 #: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:19 msgid "(ss.t)" -msgstr "" +msgstr "(ss.t)" #: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:90 msgid "No open smart block" @@ -3543,34 +3543,34 @@ msgstr "Geen open slimme blok" #: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3 #: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3 msgid "Show Waveform" -msgstr "" +msgstr "Show Waveform" #: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5 msgid "Cue In: " -msgstr "" +msgstr "Cue In:" #: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:5 #: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12 msgid "(hh:mm:ss.t)" -msgstr "" +msgstr "(hh:mm:ss.t)" #: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:12 msgid "Cue Out: " -msgstr "" +msgstr "Cue Out:" #: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:19 msgid "Original Length:" -msgstr "" +msgstr "Oorspronkelijke lengte:" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6 #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:40 msgid "Add this show" -msgstr "" +msgstr "Deze show toevoegen" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:6 #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:40 msgid "Update show" -msgstr "" +msgstr "Bijwerken van show" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:10 msgid "What" @@ -3582,11 +3582,11 @@ msgstr "Wanneer" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:19 msgid "Live Stream Input" -msgstr "" +msgstr "Live Stream Input" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:23 msgid "Record & Rebroadcast" -msgstr "" +msgstr "Record & Rebroadcast" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:29 msgid "Who" @@ -3599,203 +3599,203 @@ msgstr "Stijl" #: airtime_mvc/application/models/ShowBuilder.php:212 #, php-format msgid "Rebroadcast of %s from %s" -msgstr "" +msgstr "Rebroadcast van %s van %s" #: airtime_mvc/application/models/Preference.php:650 msgid "Select Country" -msgstr "" +msgstr "Selecteer land" #: airtime_mvc/application/models/Webstream.php:157 msgid "Length needs to be greater than 0 minutes" -msgstr "" +msgstr "Lengte moet groter zijn dan 0 minuten" #: airtime_mvc/application/models/Webstream.php:162 msgid "Length should be of form \"00h 00m\"" -msgstr "" +msgstr "Length should be of form \"00h 00m\"" #: airtime_mvc/application/models/Webstream.php:175 msgid "URL should be of form \"http://domain\"" -msgstr "" +msgstr "URL should be of form \"http://domain\"" #: airtime_mvc/application/models/Webstream.php:178 msgid "URL should be 512 characters or less" -msgstr "" +msgstr "URL moet 512 tekens of minder" #: airtime_mvc/application/models/Webstream.php:184 msgid "No MIME type found for webstream." -msgstr "" +msgstr "Geen MIME-type gevonden voor webstream." #: airtime_mvc/application/models/Webstream.php:200 msgid "Webstream name cannot be empty" -msgstr "" +msgstr "Webstream naam mag niet leeg zijn" #: airtime_mvc/application/models/Webstream.php:269 msgid "Could not parse XSPF playlist" -msgstr "" +msgstr "Could not parse XSPF playlist" #: airtime_mvc/application/models/Webstream.php:281 msgid "Could not parse PLS playlist" -msgstr "" +msgstr "Kon niet ontleden PLS afspeellijst" #: airtime_mvc/application/models/Webstream.php:300 msgid "Could not parse M3U playlist" -msgstr "" +msgstr "Kon niet ontleden M3U playlist" #: airtime_mvc/application/models/Webstream.php:314 msgid "Invalid webstream - This appears to be a file download." -msgstr "" +msgstr "Ongeldige webstream - dit lijkt te zijn een bestand te downloaden." #: airtime_mvc/application/models/Webstream.php:318 #, php-format msgid "Unrecognized stream type: %s" -msgstr "" +msgstr "Niet herkende type stream: %s" #: airtime_mvc/application/models/MusicDir.php:160 #, php-format msgid "%s is already watched." -msgstr "" +msgstr "%s is al bekeken." #: airtime_mvc/application/models/MusicDir.php:164 #, php-format msgid "%s contains nested watched directory: %s" -msgstr "" +msgstr "%s bevat geneste gevolgde directory: %s" #: airtime_mvc/application/models/MusicDir.php:168 #, php-format msgid "%s is nested within existing watched directory: %s" -msgstr "" +msgstr "%s wordt genest binnen de bestaande gecontroleerde map: %s" #: airtime_mvc/application/models/MusicDir.php:189 #: airtime_mvc/application/models/MusicDir.php:368 #, php-format msgid "%s is not a valid directory." -msgstr "" +msgstr "%s is niet een geldige directory." #: airtime_mvc/application/models/MusicDir.php:232 #, php-format msgid "" "%s is already set as the current storage dir or in the watched folders list" -msgstr "" +msgstr "%s is al ingesteld als de huidige opslag dir of in de lijst van gecontroleerde mappen" #: airtime_mvc/application/models/MusicDir.php:386 #, php-format msgid "" "%s is already set as the current storage dir or in the watched folders list." -msgstr "" +msgstr "%s is al ingesteld als de huidige opslag dir of in de lijst van gecontroleerde mappen." #: airtime_mvc/application/models/MusicDir.php:429 #, php-format msgid "%s doesn't exist in the watched list." -msgstr "" +msgstr "%s bestaat niet in de lijst met gevolgde." #: airtime_mvc/application/models/Scheduler.php:73 msgid "Cannot move items out of linked shows" -msgstr "" +msgstr "Items uit gekoppelde toont kan niet verplaatsen" #: airtime_mvc/application/models/Scheduler.php:119 msgid "The schedule you're viewing is out of date! (sched mismatch)" -msgstr "" +msgstr "Het schema dat u aan het bekijken bent is verouderd! (geplande wanverhouding)" #: airtime_mvc/application/models/Scheduler.php:124 msgid "The schedule you're viewing is out of date! (instance mismatch)" -msgstr "" +msgstr "Het schema dat u aan het bekijken bent is verouderd! (exemplaar wanverhouding)" #: airtime_mvc/application/models/Scheduler.php:132 #: airtime_mvc/application/models/Scheduler.php:460 #: airtime_mvc/application/models/Scheduler.php:498 msgid "The schedule you're viewing is out of date!" -msgstr "" +msgstr "Het schema dat u aan het bekijken bent is verouderd!" #: airtime_mvc/application/models/Scheduler.php:142 #, php-format msgid "You are not allowed to schedule show %s." -msgstr "" +msgstr "U zijn niet toegestaan om te plannen show %s." #: airtime_mvc/application/models/Scheduler.php:146 msgid "You cannot add files to recording shows." -msgstr "" +msgstr "U kunt bestanden toevoegen aan het opnemen van programma's." #: airtime_mvc/application/models/Scheduler.php:152 #, php-format msgid "The show %s is over and cannot be scheduled." -msgstr "" +msgstr "De show %s is voorbij en kan niet worden gepland." #: airtime_mvc/application/models/Scheduler.php:159 #, php-format msgid "The show %s has been previously updated!" -msgstr "" +msgstr "De show %s heeft al eerder zijn bijgewerkt!" #: airtime_mvc/application/models/Scheduler.php:178 msgid "" "Content in linked shows must be scheduled before or after any one is " "broadcasted" -msgstr "" +msgstr "Inhoud in gekoppelde shows moet worden gepland vóór of na een een wordt uitgezonden" #: airtime_mvc/application/models/Scheduler.php:195 msgid "Cannot schedule a playlist that contains missing files." -msgstr "" +msgstr "Niet gepland een afspeellijst die ontbrekende bestanden bevat." #: airtime_mvc/application/models/Scheduler.php:216 #: airtime_mvc/application/models/Scheduler.php:305 msgid "A selected File does not exist!" -msgstr "" +msgstr "Een geselecteerd bestand bestaat niet!" #: airtime_mvc/application/models/Playlist.php:812 #: airtime_mvc/application/models/Block.php:833 msgid "Cue in and cue out are null." -msgstr "" +msgstr "Het Cue in en cue uit null zijn." #: airtime_mvc/application/models/Playlist.php:843 #: airtime_mvc/application/models/Playlist.php:868 #: airtime_mvc/application/models/Block.php:879 #: airtime_mvc/application/models/Block.php:900 msgid "Can't set cue in to be larger than cue out." -msgstr "" +msgstr "Niet instellen cue in groter dan cue uit." #: airtime_mvc/application/models/Playlist.php:851 #: airtime_mvc/application/models/Playlist.php:895 #: airtime_mvc/application/models/Block.php:868 #: airtime_mvc/application/models/Block.php:924 msgid "Can't set cue out to be greater than file length." -msgstr "" +msgstr "Niet instellen cue uit groter zijn dan de bestandslengte van het" #: airtime_mvc/application/models/Playlist.php:887 #: airtime_mvc/application/models/Block.php:935 msgid "Can't set cue out to be smaller than cue in." -msgstr "" +msgstr "Niet instellen cue uit op kleiner zijn dan het cue in." #: airtime_mvc/application/models/StoredFile.php:1003 msgid "Failed to create 'organize' directory." -msgstr "" +msgstr "Is mislukt 'organiseren' map maken." #: airtime_mvc/application/models/StoredFile.php:1017 #, php-format msgid "" "The file was not uploaded, there is %s MB of disk space left and the file " "you are uploading has a size of %s MB." -msgstr "" +msgstr "Het bestand is niet geupload, er is %s MB aan schijfruimte links en het bestand dat u wilt uploaden heeft een grootte van %s MB" #: airtime_mvc/application/models/StoredFile.php:1026 msgid "" "This file appears to be corrupted and will not be added to media library." -msgstr "" +msgstr "Dit bestand lijkt te worden beschadigd en zal niet worden toegevoegd aan de mediabibliotheek." #: airtime_mvc/application/models/StoredFile.php:1065 msgid "" "The file was not uploaded, this error can occur if the computer hard drive " "does not have enough disk space or the stor directory does not have correct " "write permissions." -msgstr "" +msgstr "Het bestand is niet geupload, deze fout kan optreden als de vaste schijf van de computer niet voldoende schijfruimte hebt of de stor directory heeft geen correcte schrijf-machtigingen nodig." #: airtime_mvc/application/models/Show.php:180 msgid "Shows can have a max length of 24 hours." -msgstr "" +msgstr "Shows kunnen hebben een maximale lengte van 24 uur." #: airtime_mvc/application/models/Show.php:289 msgid "" "Cannot schedule overlapping shows.\n" "Note: Resizing a repeating show affects all of its repeats." -msgstr "" +msgstr "Niet gepland overlappende shows.\nOpmerking: vergroten/verkleinen een herhalende show heeft invloed op alle van de herhalingen." #: airtime_mvc/application/models/Auth.php:33 #, php-format @@ -3803,80 +3803,80 @@ msgid "" "Hi %s, \n" "\n" "Click this link to reset your password: " -msgstr "" +msgstr "Hallo %s,\n\nklikt u op deze link om uw wachtwoord te resette" #: airtime_mvc/application/models/Auth.php:36 #, php-format msgid "%s Password Reset" -msgstr "" +msgstr "%s wachtwoord Reset" #: airtime_mvc/application/services/CalendarService.php:50 msgid "Record file doesn't exist" -msgstr "" +msgstr "ecord bestand bestaat niet" #: airtime_mvc/application/services/CalendarService.php:54 msgid "View Recorded File Metadata" -msgstr "" +msgstr "Weergave opgenomen bestand Metadata" #: airtime_mvc/application/services/CalendarService.php:77 #: airtime_mvc/application/services/CalendarService.php:120 msgid "Show Content" -msgstr "" +msgstr "Inhoud weergeven" #: airtime_mvc/application/services/CalendarService.php:109 msgid "Remove All Content" -msgstr "" +msgstr "Alle inhoud verwijderen" #: airtime_mvc/application/services/CalendarService.php:130 #: airtime_mvc/application/services/CalendarService.php:134 msgid "Cancel Current Show" -msgstr "" +msgstr "Annuleren van de huidige Show" #: airtime_mvc/application/services/CalendarService.php:151 #: airtime_mvc/application/services/CalendarService.php:166 msgid "Edit This Instance" -msgstr "" +msgstr "Dit geval bewerken" #: airtime_mvc/application/services/CalendarService.php:161 #: airtime_mvc/application/services/CalendarService.php:172 msgid "Edit Show" -msgstr "" +msgstr "Bewerken van Show" #: airtime_mvc/application/services/CalendarService.php:190 msgid "Delete This Instance" -msgstr "" +msgstr "Dit exemplaar verwijderen" #: airtime_mvc/application/services/CalendarService.php:195 msgid "Delete This Instance and All Following" -msgstr "" +msgstr "Verwijder dit geval en alle volgende" #: airtime_mvc/application/services/CalendarService.php:249 msgid "Permission denied" -msgstr "" +msgstr "Toestemming geweigerd" #: airtime_mvc/application/services/CalendarService.php:253 msgid "Can't drag and drop repeating shows" -msgstr "" +msgstr "Kan niet slepen en neerzetten herhalende shows" #: airtime_mvc/application/services/CalendarService.php:262 msgid "Can't move a past show" -msgstr "" +msgstr "Een verleden Show verplaatsen niet" #: airtime_mvc/application/services/CalendarService.php:297 msgid "Can't move show into past" -msgstr "" +msgstr "Niet verplaatsen show in verleden" #: airtime_mvc/application/services/CalendarService.php:317 msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." -msgstr "" +msgstr "Een opgenomen programma minder dan 1 uur vóór haar rebroadcasts verplaatsen niet." #: airtime_mvc/application/services/CalendarService.php:327 msgid "Show was deleted because recorded show does not exist!" -msgstr "" +msgstr "Toon is verwijderd omdat opgenomen programma niet bestaat!" #: airtime_mvc/application/services/CalendarService.php:334 msgid "Must wait 1 hour to rebroadcast." -msgstr "" +msgstr "Moet wachten 1 uur opnieuw uitzenden.." #: airtime_mvc/application/services/HistoryService.php:1119 msgid "Track" diff --git a/airtime_mvc/locale/tr/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/tr/LC_MESSAGES/airtime.mo index aeae3430b85e644fd7856d710f45f150d8421216..319eef9093e1231ebcafc66f0fa9f0a2ac5b7b02 100644 GIT binary patch delta 16 XcmaFJ{E&IVCRQT@D?{^*+qD=0HK_%s delta 16 XcmaFJ{E&IVCRRgZD+8mA+qD=0HJJsY diff --git a/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po b/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po index 852f6b1612..4e6d9ed245 100644 --- a/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-04-17 13:02+0000\n" +"PO-Revision-Date: 2015-04-17 20:17+0000\n" "Last-Translator: M. Ömer Gölgeli \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/airtime/language/tr/)\n" "MIME-Version: 1.0\n" From ef3fc14b503c3938b2845647ac8864d812260838 Mon Sep 17 00:00:00 2001 From: localizer Date: Fri, 17 Apr 2015 20:43:07 +0000 Subject: [PATCH 29/35] updated translation resources --- .../locale/nl_NL/LC_MESSAGES/airtime.mo | Bin 64186 -> 64186 bytes .../locale/nl_NL/LC_MESSAGES/airtime.po | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.mo index 4c3565183c494f2f9efb1fd2ce37265eeaca39f3..129069b2abe29802d4b4474e7511cef0e5bf2c0e 100644 GIT binary patch delta 17 Zcmdn>m3h}!<_+bum`sc|SI%-w002(}2lW5| delta 17 Zcmdn>m3h}!<_+bun2b#~SI%-w002)92loH~ diff --git a/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po b/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po index f379b88f99..728a6f00c4 100644 --- a/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-04-17 20:35+0000\n" +"PO-Revision-Date: 2015-04-17 20:42+0000\n" "Last-Translator: dave van den berg \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/airtime/language/nl_NL/)\n" "MIME-Version: 1.0\n" From b3f66e28f7254eaf6d519ce4a321fdd9c29cc5a9 Mon Sep 17 00:00:00 2001 From: localizer Date: Tue, 21 Apr 2015 11:54:12 +0000 Subject: [PATCH 30/35] updated translation resources --- airtime_mvc/locale/tr/LC_MESSAGES/airtime.mo | Bin 481 -> 10749 bytes airtime_mvc/locale/tr/LC_MESSAGES/airtime.po | 380 +++++++++---------- 2 files changed, 190 insertions(+), 190 deletions(-) diff --git a/airtime_mvc/locale/tr/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/tr/LC_MESSAGES/airtime.mo index 319eef9093e1231ebcafc66f0fa9f0a2ac5b7b02..aa3bf8090ed45f28d215a598d44f038f110b01a7 100644 GIT binary patch literal 10749 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 KH`hyRF#-UPq6x47 diff --git a/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po b/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po index 4e6d9ed245..d19805aff4 100644 --- a/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-04-17 20:17+0000\n" +"PO-Revision-Date: 2015-04-20 14:55+0000\n" "Last-Translator: M. Ömer Gölgeli \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/airtime/language/tr/)\n" "MIME-Version: 1.0\n" @@ -21,102 +21,102 @@ msgstr "" #: airtime_mvc/application/layouts/scripts/audio-player.phtml:5 #: airtime_mvc/application/controllers/LocaleController.php:28 msgid "Audio Player" -msgstr "" +msgstr "Audio Player" #: airtime_mvc/application/layouts/scripts/layout.phtml:27 msgid "Logout" -msgstr "" +msgstr "Oturumu kapat" #: airtime_mvc/application/layouts/scripts/layout.phtml:42 #: airtime_mvc/application/layouts/scripts/layout.phtml:68 msgid "Play" -msgstr "" +msgstr "Oynat" #: airtime_mvc/application/layouts/scripts/layout.phtml:43 #: airtime_mvc/application/layouts/scripts/layout.phtml:69 msgid "Stop" -msgstr "" +msgstr "Durdur" #: airtime_mvc/application/layouts/scripts/layout.phtml:47 #: airtime_mvc/application/forms/SmartBlockCriteria.php:55 #: airtime_mvc/application/controllers/LocaleController.php:270 #: airtime_mvc/application/models/Block.php:1347 msgid "Cue In" -msgstr "" +msgstr "Cue In" #: airtime_mvc/application/layouts/scripts/layout.phtml:49 msgid "Set Cue In" -msgstr "" +msgstr "Cue In değerini ayarla" #: airtime_mvc/application/layouts/scripts/layout.phtml:54 #: airtime_mvc/application/forms/SmartBlockCriteria.php:56 #: airtime_mvc/application/controllers/LocaleController.php:271 #: airtime_mvc/application/models/Block.php:1348 msgid "Cue Out" -msgstr "" +msgstr "Cue Out" #: airtime_mvc/application/layouts/scripts/layout.phtml:56 msgid "Set Cue Out" -msgstr "" +msgstr "Cue Out değerini ayarla" #: airtime_mvc/application/layouts/scripts/layout.phtml:73 msgid "Cursor" -msgstr "" +msgstr "Cursor" #: airtime_mvc/application/layouts/scripts/layout.phtml:74 #: airtime_mvc/application/controllers/LocaleController.php:272 msgid "Fade In" -msgstr "" +msgstr "Fade In" #: airtime_mvc/application/layouts/scripts/layout.phtml:75 #: airtime_mvc/application/controllers/LocaleController.php:273 msgid "Fade Out" -msgstr "" +msgstr "Fade Out" #: airtime_mvc/application/layouts/scripts/login.phtml:24 #, php-format msgid "" "%1$s copyright © %2$s All rights reserved.%3$sMaintained and " "distributed under the %4$s by %5$s" -msgstr "" +msgstr "%1$s copyright © %2$s Tüm hakları saklıdır.%3$s%4$s lisansı altında %5$s tarafından geliştirmekte ve dağıtılmaktadır." #: airtime_mvc/application/layouts/scripts/livestream.phtml:9 #: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2 msgid "Live stream" -msgstr "" +msgstr "Canlı yayın" #: airtime_mvc/application/forms/StreamSettingSubForm.php:48 msgid "Enabled:" -msgstr "" +msgstr "Etkin:" #: airtime_mvc/application/forms/StreamSettingSubForm.php:57 msgid "Stream Type:" -msgstr "" +msgstr "Yayın Türü:" #: airtime_mvc/application/forms/StreamSettingSubForm.php:67 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 msgid "Bit Rate:" -msgstr "" +msgstr "Bit Değeri:" #: airtime_mvc/application/forms/StreamSettingSubForm.php:77 msgid "Service Type:" -msgstr "" +msgstr "Servis Türü:" #: airtime_mvc/application/forms/StreamSettingSubForm.php:87 msgid "Channels:" -msgstr "" +msgstr "Kanallar:" #: airtime_mvc/application/forms/StreamSettingSubForm.php:88 msgid "1 - Mono" -msgstr "" +msgstr "1 - Mono" #: airtime_mvc/application/forms/StreamSettingSubForm.php:88 msgid "2 - Stereo" -msgstr "" +msgstr "2 - Stereo" #: airtime_mvc/application/forms/StreamSettingSubForm.php:97 msgid "Server" -msgstr "" +msgstr "Sunucu" #: airtime_mvc/application/forms/StreamSettingSubForm.php:100 #: airtime_mvc/application/forms/StreamSettingSubForm.php:123 @@ -134,24 +134,24 @@ msgstr "" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:118 #: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 msgid "Invalid character entered" -msgstr "" +msgstr "Yanlış karakter girdiniz" #: airtime_mvc/application/forms/StreamSettingSubForm.php:109 #: airtime_mvc/application/forms/EmailServerPreferences.php:100 msgid "Port" -msgstr "" +msgstr "Port" #: airtime_mvc/application/forms/StreamSettingSubForm.php:112 #: airtime_mvc/application/forms/LiveStreamingPreferences.php:90 #: airtime_mvc/application/forms/LiveStreamingPreferences.php:109 msgid "Only numbers are allowed." -msgstr "" +msgstr "Sadece rakam girebilirsiniz." #: airtime_mvc/application/forms/StreamSettingSubForm.php:120 #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/EmailServerPreferences.php:82 msgid "Password" -msgstr "" +msgstr "Şifre" #: airtime_mvc/application/forms/StreamSettingSubForm.php:132 #: airtime_mvc/application/forms/SmartBlockCriteria.php:59 @@ -160,137 +160,137 @@ msgstr "" #: airtime_mvc/application/models/Block.php:1351 #: airtime_mvc/application/services/HistoryService.php:1112 msgid "Genre" -msgstr "" +msgstr "Tür" #: airtime_mvc/application/forms/StreamSettingSubForm.php:141 msgid "URL" -msgstr "" +msgstr "URL" #: airtime_mvc/application/forms/StreamSettingSubForm.php:153 #: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 msgid "Name" -msgstr "" +msgstr "İsim" #: airtime_mvc/application/forms/StreamSettingSubForm.php:162 #: airtime_mvc/application/views/scripts/webstream/webstream.phtml:41 #: airtime_mvc/application/views/scripts/playlist/playlist.phtml:55 #: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:57 msgid "Description" -msgstr "" +msgstr "Tanım" #: airtime_mvc/application/forms/StreamSettingSubForm.php:171 msgid "Mount Point" -msgstr "" +msgstr "Bağlama Noktası" #: airtime_mvc/application/forms/StreamSettingSubForm.php:183 #: airtime_mvc/application/forms/PasswordRestore.php:25 #: airtime_mvc/application/views/scripts/user/add-user.phtml:18 msgid "Username" -msgstr "" +msgstr "Kullanıcı adı" #: airtime_mvc/application/forms/StreamSettingSubForm.php:195 msgid "Admin User" -msgstr "" +msgstr "Yönetici Hesabı" #: airtime_mvc/application/forms/StreamSettingSubForm.php:207 msgid "Admin Password" -msgstr "" +msgstr "Yönetici Şifresi" #: airtime_mvc/application/forms/StreamSettingSubForm.php:218 #: airtime_mvc/application/controllers/LocaleController.php:161 msgid "Getting information from the server..." -msgstr "" +msgstr "Sunucudan bilgiler getiriliyor..." #: airtime_mvc/application/forms/StreamSettingSubForm.php:232 msgid "Server cannot be empty." -msgstr "" +msgstr "Sunucu değeri boş bırakılamaz." #: airtime_mvc/application/forms/StreamSettingSubForm.php:237 msgid "Port cannot be empty." -msgstr "" +msgstr "Port değeri boş bırakılamaz." #: airtime_mvc/application/forms/StreamSettingSubForm.php:243 msgid "Mount cannot be empty with Icecast server." -msgstr "" +msgstr "Icecast sunucusunu Bağlama noktası değeri boş olarak kullanamazsınız." #: airtime_mvc/application/forms/EditAudioMD.php:19 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 msgid "Title:" -msgstr "" +msgstr "Parça Adı:" #: airtime_mvc/application/forms/EditAudioMD.php:26 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:10 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:34 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:148 msgid "Creator:" -msgstr "" +msgstr "Oluşturan:" #: airtime_mvc/application/forms/EditAudioMD.php:33 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 msgid "Album:" -msgstr "" +msgstr "Albüm:" #: airtime_mvc/application/forms/EditAudioMD.php:40 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:12 msgid "Track:" -msgstr "" +msgstr "Parça Numarası:" #: airtime_mvc/application/forms/EditAudioMD.php:47 #: airtime_mvc/application/forms/AddShowWhat.php:45 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 msgid "Genre:" -msgstr "" +msgstr "Tür:" #: airtime_mvc/application/forms/EditAudioMD.php:55 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 msgid "Year:" -msgstr "" +msgstr "Yıl:" #: airtime_mvc/application/forms/EditAudioMD.php:67 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 msgid "Label:" -msgstr "" +msgstr "Plak Şirketi:" #: airtime_mvc/application/forms/EditAudioMD.php:74 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 msgid "Composer:" -msgstr "" +msgstr "Besteleyen:" #: airtime_mvc/application/forms/EditAudioMD.php:81 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 msgid "Conductor:" -msgstr "" +msgstr "Orkestra Şefi:" #: airtime_mvc/application/forms/EditAudioMD.php:88 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 msgid "Mood:" -msgstr "" +msgstr "Ruh Hali:" #: airtime_mvc/application/forms/EditAudioMD.php:96 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 msgid "BPM:" -msgstr "" +msgstr "BPM:" #: airtime_mvc/application/forms/EditAudioMD.php:105 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 msgid "Copyright:" -msgstr "" +msgstr "Telif Hakkı:" #: airtime_mvc/application/forms/EditAudioMD.php:112 msgid "ISRC Number:" -msgstr "" +msgstr "ISRC No:" #: airtime_mvc/application/forms/EditAudioMD.php:119 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 msgid "Website:" -msgstr "" +msgstr "Websitesi:" #: airtime_mvc/application/forms/EditAudioMD.php:126 #: airtime_mvc/application/forms/Login.php:52 #: airtime_mvc/application/forms/EditUser.php:118 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 msgid "Language:" -msgstr "" +msgstr "Dil:" #: airtime_mvc/application/forms/EditAudioMD.php:135 #: airtime_mvc/application/forms/AddUser.php:110 @@ -307,7 +307,7 @@ msgstr "" #: airtime_mvc/application/views/scripts/playlist/playlist.phtml:27 #: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:24 msgid "Save" -msgstr "" +msgstr "Kaydet" #: airtime_mvc/application/forms/EditAudioMD.php:145 #: airtime_mvc/application/forms/EditHistory.php:141 @@ -315,355 +315,355 @@ msgstr "" #: airtime_mvc/application/controllers/LocaleController.php:284 #: airtime_mvc/application/controllers/LocaleController.php:307 msgid "Cancel" -msgstr "" +msgstr "İptal" #: airtime_mvc/application/forms/AddUser.php:29 #: airtime_mvc/application/forms/Login.php:23 #: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" -msgstr "" +msgstr "Kullanıcı Adı:" #: airtime_mvc/application/forms/AddUser.php:38 #: airtime_mvc/application/forms/Login.php:38 #: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" -msgstr "" +msgstr "Şifre:" #: airtime_mvc/application/forms/AddUser.php:46 #: airtime_mvc/application/forms/EditUser.php:56 msgid "Verify Password:" -msgstr "" +msgstr "Şifre Onayı:" #: airtime_mvc/application/forms/AddUser.php:55 #: airtime_mvc/application/forms/EditUser.php:66 msgid "Firstname:" -msgstr "" +msgstr "İsim:" #: airtime_mvc/application/forms/AddUser.php:61 #: airtime_mvc/application/forms/EditUser.php:74 msgid "Lastname:" -msgstr "" +msgstr "Soyisim:" #: airtime_mvc/application/forms/AddUser.php:67 #: airtime_mvc/application/forms/SupportSettings.php:46 #: airtime_mvc/application/forms/RegisterAirtime.php:51 #: airtime_mvc/application/forms/EditUser.php:82 msgid "Email:" -msgstr "" +msgstr "Eposta:" #: airtime_mvc/application/forms/AddUser.php:76 #: airtime_mvc/application/forms/EditUser.php:93 msgid "Mobile Phone:" -msgstr "" +msgstr "Cep Telefonu:" #: airtime_mvc/application/forms/AddUser.php:82 #: airtime_mvc/application/forms/EditUser.php:101 msgid "Skype:" -msgstr "" +msgstr "Skype:" #: airtime_mvc/application/forms/AddUser.php:88 #: airtime_mvc/application/forms/EditUser.php:109 msgid "Jabber:" -msgstr "" +msgstr "Jabber:" #: airtime_mvc/application/forms/AddUser.php:95 msgid "User Type:" -msgstr "" +msgstr "Kullanıcı Tipi:" #: airtime_mvc/application/forms/AddUser.php:99 #: airtime_mvc/application/controllers/LocaleController.php:313 msgid "Guest" -msgstr "" +msgstr "Ziyaretçi" #: airtime_mvc/application/forms/AddUser.php:100 #: airtime_mvc/application/controllers/LocaleController.php:311 msgid "DJ" -msgstr "" +msgstr "DJ" #: airtime_mvc/application/forms/AddUser.php:101 #: airtime_mvc/application/controllers/LocaleController.php:312 msgid "Program Manager" -msgstr "" +msgstr "Program Yöneticisi" #: airtime_mvc/application/forms/AddUser.php:102 #: airtime_mvc/application/controllers/LocaleController.php:310 msgid "Admin" -msgstr "" +msgstr "Yönetici (Admin)" #: airtime_mvc/application/forms/AddUser.php:120 #: airtime_mvc/application/forms/EditUser.php:139 msgid "Login name is not unique." -msgstr "" +msgstr "Kullanıcı adı eşsiz değil." #: airtime_mvc/application/forms/AddShowStyle.php:10 msgid "Background Colour:" -msgstr "" +msgstr "Arkaplan Rengi" #: airtime_mvc/application/forms/AddShowStyle.php:29 msgid "Text Colour:" -msgstr "" +msgstr "Metin Rengi:" #: airtime_mvc/application/forms/ShowBuilder.php:18 #: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" -msgstr "" +msgstr "Tarih Başlangıcı:" #: airtime_mvc/application/forms/ShowBuilder.php:46 #: airtime_mvc/application/forms/DateRange.php:44 #: airtime_mvc/application/forms/AddShowRepeats.php:56 msgid "Date End:" -msgstr "" +msgstr "Tarih Bitişi:" #: airtime_mvc/application/forms/ShowBuilder.php:72 msgid "Show:" -msgstr "" +msgstr "Show:" #: airtime_mvc/application/forms/ShowBuilder.php:80 msgid "All My Shows:" -msgstr "" +msgstr "Tüm Show'larım:" #: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 #: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 msgid "days" -msgstr "" +msgstr "gün" #: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 #: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 msgid "Day must be specified" -msgstr "" +msgstr "Günü belirtmelisiniz" #: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 #: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 msgid "Time must be specified" -msgstr "" +msgstr "Zamanı belirtmelisiniz" #: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 #: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 msgid "Must wait at least 1 hour to rebroadcast" -msgstr "" +msgstr "Tekrar yayın yapmak için en az bir saat bekleyiniz" #: airtime_mvc/application/forms/WatchedDirPreferences.php:14 msgid "Import Folder:" -msgstr "" +msgstr "İçe Aktarım Klasörü" #: airtime_mvc/application/forms/WatchedDirPreferences.php:25 msgid "Watched Folders:" -msgstr "" +msgstr "İzlenen Klasörler:" #: airtime_mvc/application/forms/WatchedDirPreferences.php:40 msgid "Not a valid Directory" -msgstr "" +msgstr "Geçerli bir Klasör değil." #: airtime_mvc/application/forms/AddShowWho.php:10 msgid "Search Users:" -msgstr "" +msgstr "Kullanıcıları Ara:" #: airtime_mvc/application/forms/AddShowWho.php:24 msgid "DJs:" -msgstr "" +msgstr "DJ'ler:" #: airtime_mvc/application/forms/Login.php:67 #: airtime_mvc/application/views/scripts/login/index.phtml:3 msgid "Login" -msgstr "" +msgstr "Giriş yap" #: airtime_mvc/application/forms/Login.php:86 msgid "Type the characters you see in the picture below." -msgstr "" +msgstr "Aşağıdaki resimde gördüğünüz karakterleri girin." #: airtime_mvc/application/forms/GeneralPreferences.php:21 #: airtime_mvc/application/forms/SupportSettings.php:21 #: airtime_mvc/application/forms/RegisterAirtime.php:30 msgid "Station Name" -msgstr "" +msgstr "Radyo Adı" #: airtime_mvc/application/forms/GeneralPreferences.php:33 msgid "Default Crossfade Duration (s):" -msgstr "" +msgstr "Varsayılan Çarpraz Geçiş Süresi:" #: airtime_mvc/application/forms/GeneralPreferences.php:40 #: airtime_mvc/application/forms/GeneralPreferences.php:59 #: airtime_mvc/application/forms/GeneralPreferences.php:78 msgid "enter a time in seconds 0{.0}" -msgstr "" +msgstr "saniye olarak bir zaman giriniz 0{.0}" #: airtime_mvc/application/forms/GeneralPreferences.php:52 msgid "Default Fade In (s):" -msgstr "" +msgstr "Varsayılan Fade In geçişi (s)" #: airtime_mvc/application/forms/GeneralPreferences.php:71 msgid "Default Fade Out (s):" -msgstr "" +msgstr "Varsayılan Fade Out geçişi (s)" #: airtime_mvc/application/forms/GeneralPreferences.php:89 #, php-format msgid "" "Allow Remote Websites To Access \"Schedule\" Info?%s (Enable this to make " "front-end widgets work.)" -msgstr "" +msgstr "Harici Websitelerinin \"Yayın Akışı\" Bilgilerine Erişmesine İzin Ver?%s (Anasayfa Widget'ları Kullanabilmek İçin Bunu Aktifleştirin)" #: airtime_mvc/application/forms/GeneralPreferences.php:90 msgid "Disabled" -msgstr "" +msgstr "Devre dışı" #: airtime_mvc/application/forms/GeneralPreferences.php:91 msgid "Enabled" -msgstr "" +msgstr "Aktif" #: airtime_mvc/application/forms/GeneralPreferences.php:97 msgid "Default Interface Language" -msgstr "" +msgstr "Varsayılan Arabirim Dili" #: airtime_mvc/application/forms/GeneralPreferences.php:105 msgid "Station Timezone" -msgstr "" +msgstr "Radyo Saat Dilimi" #: airtime_mvc/application/forms/GeneralPreferences.php:113 msgid "Week Starts On" -msgstr "" +msgstr "Hafta Başlangıcı" #: airtime_mvc/application/forms/GeneralPreferences.php:123 #: airtime_mvc/application/controllers/LocaleController.php:238 msgid "Sunday" -msgstr "" +msgstr "Pazar" #: airtime_mvc/application/forms/GeneralPreferences.php:124 #: airtime_mvc/application/controllers/LocaleController.php:239 msgid "Monday" -msgstr "" +msgstr "Pazartesi" #: airtime_mvc/application/forms/GeneralPreferences.php:125 #: airtime_mvc/application/controllers/LocaleController.php:240 msgid "Tuesday" -msgstr "" +msgstr "Salı" #: airtime_mvc/application/forms/GeneralPreferences.php:126 #: airtime_mvc/application/controllers/LocaleController.php:241 msgid "Wednesday" -msgstr "" +msgstr "Çarşamba" #: airtime_mvc/application/forms/GeneralPreferences.php:127 #: airtime_mvc/application/controllers/LocaleController.php:242 msgid "Thursday" -msgstr "" +msgstr "Perşembe" #: airtime_mvc/application/forms/GeneralPreferences.php:128 #: airtime_mvc/application/controllers/LocaleController.php:243 msgid "Friday" -msgstr "" +msgstr "Cuma" #: airtime_mvc/application/forms/GeneralPreferences.php:129 #: airtime_mvc/application/controllers/LocaleController.php:244 msgid "Saturday" -msgstr "" +msgstr "Cumartesi" #: airtime_mvc/application/forms/AddShowRepeats.php:10 msgid "Link:" -msgstr "" +msgstr "Birbirine Bağla:" #: airtime_mvc/application/forms/AddShowRepeats.php:16 msgid "Repeat Type:" -msgstr "" +msgstr "Tekrar Türü:" #: airtime_mvc/application/forms/AddShowRepeats.php:19 msgid "weekly" -msgstr "" +msgstr "haftalık" #: airtime_mvc/application/forms/AddShowRepeats.php:20 msgid "every 2 weeks" -msgstr "" +msgstr "2 haftada bir" #: airtime_mvc/application/forms/AddShowRepeats.php:21 msgid "every 3 weeks" -msgstr "" +msgstr "3 haftada bir" #: airtime_mvc/application/forms/AddShowRepeats.php:22 msgid "every 4 weeks" -msgstr "" +msgstr "4 haftada bir" #: airtime_mvc/application/forms/AddShowRepeats.php:23 msgid "monthly" -msgstr "" +msgstr "aylık" #: airtime_mvc/application/forms/AddShowRepeats.php:32 msgid "Select Days:" -msgstr "" +msgstr "Günleri Seçin:" #: airtime_mvc/application/forms/AddShowRepeats.php:35 #: airtime_mvc/application/controllers/LocaleController.php:245 msgid "Sun" -msgstr "" +msgstr "Paz" #: airtime_mvc/application/forms/AddShowRepeats.php:36 #: airtime_mvc/application/controllers/LocaleController.php:246 msgid "Mon" -msgstr "" +msgstr "Pzt" #: airtime_mvc/application/forms/AddShowRepeats.php:37 #: airtime_mvc/application/controllers/LocaleController.php:247 msgid "Tue" -msgstr "" +msgstr "Sal" #: airtime_mvc/application/forms/AddShowRepeats.php:38 #: airtime_mvc/application/controllers/LocaleController.php:248 msgid "Wed" -msgstr "" +msgstr "Çar" #: airtime_mvc/application/forms/AddShowRepeats.php:39 #: airtime_mvc/application/controllers/LocaleController.php:249 msgid "Thu" -msgstr "" +msgstr "Per" #: airtime_mvc/application/forms/AddShowRepeats.php:40 #: airtime_mvc/application/controllers/LocaleController.php:250 msgid "Fri" -msgstr "" +msgstr "Cum" #: airtime_mvc/application/forms/AddShowRepeats.php:41 #: airtime_mvc/application/controllers/LocaleController.php:251 msgid "Sat" -msgstr "" +msgstr "Cmt" #: airtime_mvc/application/forms/AddShowRepeats.php:47 msgid "Repeat By:" -msgstr "" +msgstr "Şuna göre tekrar et:" #: airtime_mvc/application/forms/AddShowRepeats.php:50 msgid "day of the month" -msgstr "" +msgstr "Ayın günü" #: airtime_mvc/application/forms/AddShowRepeats.php:50 msgid "day of the week" -msgstr "" +msgstr "Haftanın günü" #: airtime_mvc/application/forms/AddShowRepeats.php:69 msgid "No End?" -msgstr "" +msgstr "Sonu yok?" #: airtime_mvc/application/forms/AddShowRepeats.php:106 msgid "End date must be after start date" -msgstr "" +msgstr "Bitiş tarihi başlangıç tarihinden sonra olmalı" #: airtime_mvc/application/forms/AddShowRepeats.php:113 msgid "Please select a repeat day" -msgstr "" +msgstr "Lütfen tekrar edilmesini istediğiniz günleri seçiniz" #: airtime_mvc/application/forms/PasswordChange.php:28 msgid "Confirm new password" -msgstr "" +msgstr "Yeni şifreyi onayla" #: airtime_mvc/application/forms/PasswordChange.php:36 msgid "Password confirmation does not match your password." -msgstr "" +msgstr "Onay şifresiyle şifreniz aynı değil." #: airtime_mvc/application/forms/PasswordChange.php:43 msgid "Get new password" -msgstr "" +msgstr "Yeni şifre al" #: airtime_mvc/application/forms/SmartBlockCriteria.php:48 #: airtime_mvc/application/models/Block.php:1340 msgid "Select criteria" -msgstr "" +msgstr "Kriter seçiniz" #: airtime_mvc/application/forms/SmartBlockCriteria.php:49 #: airtime_mvc/application/controllers/LocaleController.php:66 @@ -671,18 +671,18 @@ msgstr "" #: airtime_mvc/application/models/Block.php:1341 #: airtime_mvc/application/services/HistoryService.php:1110 msgid "Album" -msgstr "" +msgstr "Albüm" #: airtime_mvc/application/forms/SmartBlockCriteria.php:50 #: airtime_mvc/application/models/Block.php:1342 msgid "Bit Rate (Kbps)" -msgstr "" +msgstr "Bit Oranı (Kbps)" #: airtime_mvc/application/forms/SmartBlockCriteria.php:51 #: airtime_mvc/application/controllers/LocaleController.php:68 #: airtime_mvc/application/models/Block.php:1343 msgid "BPM" -msgstr "" +msgstr "BPM" #: airtime_mvc/application/forms/SmartBlockCriteria.php:52 #: airtime_mvc/application/controllers/LocaleController.php:69 @@ -690,14 +690,14 @@ msgstr "" #: airtime_mvc/application/services/HistoryService.php:1115 #: airtime_mvc/application/services/HistoryService.php:1169 msgid "Composer" -msgstr "" +msgstr "Besteleyen" #: airtime_mvc/application/forms/SmartBlockCriteria.php:53 #: airtime_mvc/application/controllers/LocaleController.php:70 #: airtime_mvc/application/models/Block.php:1345 #: airtime_mvc/application/services/HistoryService.php:1120 msgid "Conductor" -msgstr "" +msgstr "Orkestra Şefi" #: airtime_mvc/application/forms/SmartBlockCriteria.php:54 #: airtime_mvc/application/controllers/LocaleController.php:71 @@ -705,7 +705,7 @@ msgstr "" #: airtime_mvc/application/services/HistoryService.php:1117 #: airtime_mvc/application/services/HistoryService.php:1170 msgid "Copyright" -msgstr "" +msgstr "Telif Hakkı" #: airtime_mvc/application/forms/SmartBlockCriteria.php:57 #: airtime_mvc/application/controllers/LocaleController.php:65 @@ -715,46 +715,46 @@ msgstr "" #: airtime_mvc/application/services/HistoryService.php:1149 #: airtime_mvc/application/services/HistoryService.php:1166 msgid "Creator" -msgstr "" +msgstr "Oluşturan" #: airtime_mvc/application/forms/SmartBlockCriteria.php:58 #: airtime_mvc/application/controllers/LocaleController.php:72 #: airtime_mvc/application/models/Block.php:1350 msgid "Encoded By" -msgstr "" +msgstr "Encode eden" #: airtime_mvc/application/forms/SmartBlockCriteria.php:60 #: airtime_mvc/application/controllers/LocaleController.php:74 #: airtime_mvc/application/models/Block.php:1352 #: airtime_mvc/application/services/HistoryService.php:1116 msgid "ISRC" -msgstr "" +msgstr "ISRC" #: airtime_mvc/application/forms/SmartBlockCriteria.php:61 #: airtime_mvc/application/controllers/LocaleController.php:75 #: airtime_mvc/application/models/Block.php:1353 #: airtime_mvc/application/services/HistoryService.php:1114 msgid "Label" -msgstr "" +msgstr "Plak Şirketi" #: airtime_mvc/application/forms/SmartBlockCriteria.php:62 #: airtime_mvc/application/controllers/LocaleController.php:76 #: airtime_mvc/application/models/Block.php:1354 #: airtime_mvc/application/services/HistoryService.php:1121 msgid "Language" -msgstr "" +msgstr "Dil" #: airtime_mvc/application/forms/SmartBlockCriteria.php:63 #: airtime_mvc/application/controllers/LocaleController.php:77 #: airtime_mvc/application/models/Block.php:1355 msgid "Last Modified" -msgstr "" +msgstr "Son Değiştirilme Zamanı" #: airtime_mvc/application/forms/SmartBlockCriteria.php:64 #: airtime_mvc/application/controllers/LocaleController.php:78 #: airtime_mvc/application/models/Block.php:1356 msgid "Last Played" -msgstr "" +msgstr "Son Oynatma Zamanı" #: airtime_mvc/application/forms/SmartBlockCriteria.php:65 #: airtime_mvc/application/controllers/LocaleController.php:79 @@ -763,37 +763,37 @@ msgstr "" #: airtime_mvc/application/services/HistoryService.php:1111 #: airtime_mvc/application/services/HistoryService.php:1168 msgid "Length" -msgstr "" +msgstr "Uzunluk" #: airtime_mvc/application/forms/SmartBlockCriteria.php:66 #: airtime_mvc/application/controllers/LocaleController.php:80 #: airtime_mvc/application/models/Block.php:1358 msgid "Mime" -msgstr "" +msgstr "Mime" #: airtime_mvc/application/forms/SmartBlockCriteria.php:67 #: airtime_mvc/application/controllers/LocaleController.php:81 #: airtime_mvc/application/models/Block.php:1359 #: airtime_mvc/application/services/HistoryService.php:1113 msgid "Mood" -msgstr "" +msgstr "Ruh Hali" #: airtime_mvc/application/forms/SmartBlockCriteria.php:68 #: airtime_mvc/application/controllers/LocaleController.php:82 #: airtime_mvc/application/models/Block.php:1360 msgid "Owner" -msgstr "" +msgstr "Sahibi" #: airtime_mvc/application/forms/SmartBlockCriteria.php:69 #: airtime_mvc/application/controllers/LocaleController.php:83 #: airtime_mvc/application/models/Block.php:1361 msgid "Replay Gain" -msgstr "" +msgstr "Replay Gain" #: airtime_mvc/application/forms/SmartBlockCriteria.php:70 #: airtime_mvc/application/models/Block.php:1362 msgid "Sample Rate (kHz)" -msgstr "" +msgstr "Örnekleme Oranı (kHz)" #: airtime_mvc/application/forms/SmartBlockCriteria.php:71 #: airtime_mvc/application/controllers/LocaleController.php:64 @@ -803,32 +803,32 @@ msgstr "" #: airtime_mvc/application/services/HistoryService.php:1148 #: airtime_mvc/application/services/HistoryService.php:1165 msgid "Title" -msgstr "" +msgstr "Parça Adı" #: airtime_mvc/application/forms/SmartBlockCriteria.php:72 #: airtime_mvc/application/controllers/LocaleController.php:85 #: airtime_mvc/application/models/Block.php:1364 msgid "Track Number" -msgstr "" +msgstr "Parça Numarası" #: airtime_mvc/application/forms/SmartBlockCriteria.php:73 #: airtime_mvc/application/controllers/LocaleController.php:86 #: airtime_mvc/application/models/Block.php:1365 msgid "Uploaded" -msgstr "" +msgstr "Yüklenme Tarihi" #: airtime_mvc/application/forms/SmartBlockCriteria.php:74 #: airtime_mvc/application/controllers/LocaleController.php:87 #: airtime_mvc/application/models/Block.php:1366 msgid "Website" -msgstr "" +msgstr "Website'si" #: airtime_mvc/application/forms/SmartBlockCriteria.php:75 #: airtime_mvc/application/controllers/LocaleController.php:88 #: airtime_mvc/application/models/Block.php:1367 #: airtime_mvc/application/services/HistoryService.php:1118 msgid "Year" -msgstr "" +msgstr "Yıl" #: airtime_mvc/application/forms/SmartBlockCriteria.php:87 #: airtime_mvc/application/forms/SmartBlockCriteria.php:103 @@ -838,19 +838,19 @@ msgstr "" #: airtime_mvc/application/controllers/LocaleController.php:139 #: airtime_mvc/application/models/Block.php:1371 msgid "Select modifier" -msgstr "" +msgstr "Değişken seçin" #: airtime_mvc/application/forms/SmartBlockCriteria.php:88 #: airtime_mvc/application/controllers/LocaleController.php:140 #: airtime_mvc/application/models/Block.php:1372 msgid "contains" -msgstr "" +msgstr "içersin" #: airtime_mvc/application/forms/SmartBlockCriteria.php:89 #: airtime_mvc/application/controllers/LocaleController.php:141 #: airtime_mvc/application/models/Block.php:1373 msgid "does not contain" -msgstr "" +msgstr "içermesin" #: airtime_mvc/application/forms/SmartBlockCriteria.php:90 #: airtime_mvc/application/forms/SmartBlockCriteria.php:104 @@ -858,7 +858,7 @@ msgstr "" #: airtime_mvc/application/models/Block.php:1374 #: airtime_mvc/application/models/Block.php:1378 msgid "is" -msgstr "" +msgstr "eşittir" #: airtime_mvc/application/forms/SmartBlockCriteria.php:91 #: airtime_mvc/application/forms/SmartBlockCriteria.php:105 @@ -866,144 +866,144 @@ msgstr "" #: airtime_mvc/application/models/Block.php:1375 #: airtime_mvc/application/models/Block.php:1379 msgid "is not" -msgstr "" +msgstr "eşit değildir" #: airtime_mvc/application/forms/SmartBlockCriteria.php:92 #: airtime_mvc/application/controllers/LocaleController.php:144 #: airtime_mvc/application/models/Block.php:1376 msgid "starts with" -msgstr "" +msgstr "ile başlayan" #: airtime_mvc/application/forms/SmartBlockCriteria.php:93 #: airtime_mvc/application/controllers/LocaleController.php:145 #: airtime_mvc/application/models/Block.php:1377 msgid "ends with" -msgstr "" +msgstr "ile biten" #: airtime_mvc/application/forms/SmartBlockCriteria.php:106 #: airtime_mvc/application/controllers/LocaleController.php:146 #: airtime_mvc/application/models/Block.php:1380 msgid "is greater than" -msgstr "" +msgstr "büyüktür" #: airtime_mvc/application/forms/SmartBlockCriteria.php:107 #: airtime_mvc/application/controllers/LocaleController.php:147 #: airtime_mvc/application/models/Block.php:1381 msgid "is less than" -msgstr "" +msgstr "küçüktür" #: airtime_mvc/application/forms/SmartBlockCriteria.php:108 #: airtime_mvc/application/controllers/LocaleController.php:148 #: airtime_mvc/application/models/Block.php:1382 msgid "is in the range" -msgstr "" +msgstr "aralıkta" #: airtime_mvc/application/forms/SmartBlockCriteria.php:118 msgid "hours" -msgstr "" +msgstr "saat" #: airtime_mvc/application/forms/SmartBlockCriteria.php:119 msgid "minutes" -msgstr "" +msgstr "dakika" #: airtime_mvc/application/forms/SmartBlockCriteria.php:120 #: airtime_mvc/application/models/Block.php:333 msgid "items" -msgstr "" +msgstr "parça" #: airtime_mvc/application/forms/SmartBlockCriteria.php:167 msgid "Set smart block type:" -msgstr "" +msgstr "Akıllı blok türünü seçin" #: airtime_mvc/application/forms/SmartBlockCriteria.php:170 msgid "Static" -msgstr "" +msgstr "Sabit" #: airtime_mvc/application/forms/SmartBlockCriteria.php:171 msgid "Dynamic" -msgstr "" +msgstr "Dinamik" #: airtime_mvc/application/forms/SmartBlockCriteria.php:285 msgid "Allow Repeat Tracks:" -msgstr "" +msgstr "Parçalar tekrar etsin mi?" #: airtime_mvc/application/forms/SmartBlockCriteria.php:302 msgid "Limit to" -msgstr "" +msgstr "Sınırla" #: airtime_mvc/application/forms/SmartBlockCriteria.php:324 msgid "Generate playlist content and save criteria" -msgstr "" +msgstr "Çalma listesi içeriği oluştur ve kriterleri kaydet" #: airtime_mvc/application/forms/SmartBlockCriteria.php:326 msgid "Generate" -msgstr "" +msgstr "Oluştur" #: airtime_mvc/application/forms/SmartBlockCriteria.php:332 msgid "Shuffle playlist content" -msgstr "" +msgstr "Çalma listesi içeriğini karıştır" #: airtime_mvc/application/forms/SmartBlockCriteria.php:334 #: airtime_mvc/application/views/scripts/playlist/playlist.phtml:24 msgid "Shuffle" -msgstr "" +msgstr "Karıştır" #: airtime_mvc/application/forms/SmartBlockCriteria.php:500 #: airtime_mvc/application/forms/SmartBlockCriteria.php:512 msgid "Limit cannot be empty or smaller than 0" -msgstr "" +msgstr "Sınırlama boş veya 0'dan küçük olamaz" #: airtime_mvc/application/forms/SmartBlockCriteria.php:505 msgid "Limit cannot be more than 24 hrs" -msgstr "" +msgstr "Sınırlama 24 saati geçemez" #: airtime_mvc/application/forms/SmartBlockCriteria.php:515 msgid "The value should be an integer" -msgstr "" +msgstr "Değer tamsayı olmalıdır" #: airtime_mvc/application/forms/SmartBlockCriteria.php:518 msgid "500 is the max item limit value you can set" -msgstr "" +msgstr "Ayarlayabileceğiniz azami parça sınırı 500'dür" #: airtime_mvc/application/forms/SmartBlockCriteria.php:529 msgid "You must select Criteria and Modifier" -msgstr "" +msgstr "Kriter ve Değişken seçin" #: airtime_mvc/application/forms/SmartBlockCriteria.php:536 msgid "'Length' should be in '00:00:00' format" -msgstr "" +msgstr "Uzunluk '00:00:00' türünde olmalıdır" #: airtime_mvc/application/forms/SmartBlockCriteria.php:541 #: airtime_mvc/application/forms/SmartBlockCriteria.php:554 msgid "" "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 " "00:00:00)" -msgstr "" +msgstr "Değer saat biçiminde girilmelidir (eör. 0000-00-00 veya 0000-00-00 00:00:00)" #: airtime_mvc/application/forms/SmartBlockCriteria.php:568 msgid "The value has to be numeric" -msgstr "" +msgstr "Değer rakam cinsinden girilmelidir" #: airtime_mvc/application/forms/SmartBlockCriteria.php:573 msgid "The value should be less then 2147483648" -msgstr "" +msgstr "Değer 2147483648'den küçük olmalıdır" #: airtime_mvc/application/forms/SmartBlockCriteria.php:578 #, php-format msgid "The value should be less than %s characters" -msgstr "" +msgstr "Değer %s karakter'den az olmalıdır" #: airtime_mvc/application/forms/SmartBlockCriteria.php:585 msgid "Value cannot be empty" -msgstr "" +msgstr "Değer boş bırakılamaz" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 msgid "Auto Switch Off" -msgstr "" +msgstr "Otomatik Devre Dışı Bırak" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:26 msgid "Auto Switch On" -msgstr "" +msgstr "Otomatik Devreye Sok" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:33 msgid "Switch Transition Fade (s)" @@ -2851,7 +2851,7 @@ msgstr "" #: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:40 #: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:75 msgid "Add" -msgstr "" +msgstr "Ekle" #: airtime_mvc/application/views/scripts/form/add-show-live-stream.phtml:53 msgid "Connection URL: " From ff94efc214cf34725e8f677a2f236dd256ca60cc Mon Sep 17 00:00:00 2001 From: localizer Date: Fri, 24 Apr 2015 09:09:12 +0000 Subject: [PATCH 31/35] updated translation resources --- airtime_mvc/locale/az/LC_MESSAGES/airtime.mo | Bin 474 -> 474 bytes airtime_mvc/locale/az/LC_MESSAGES/airtime.po | 2 +- .../locale/de_AT/LC_MESSAGES/airtime.mo | Bin 63465 -> 63465 bytes .../locale/de_AT/LC_MESSAGES/airtime.po | 2 +- .../locale/en_GB/LC_MESSAGES/airtime.mo | Bin 61416 -> 61416 bytes .../locale/en_GB/LC_MESSAGES/airtime.po | 2 +- .../locale/hy_AM/LC_MESSAGES/airtime.mo | Bin 487 -> 487 bytes .../locale/hy_AM/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/ja/LC_MESSAGES/airtime.mo | Bin 69372 -> 69372 bytes airtime_mvc/locale/ja/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/ka/LC_MESSAGES/airtime.mo | Bin 464 -> 464 bytes airtime_mvc/locale/ka/LC_MESSAGES/airtime.po | 2 +- .../locale/pt_BR/LC_MESSAGES/airtime.mo | Bin 57870 -> 57870 bytes .../locale/pt_BR/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/tr/LC_MESSAGES/airtime.mo | Bin 10749 -> 10749 bytes airtime_mvc/locale/tr/LC_MESSAGES/airtime.po | 2 +- 16 files changed, 8 insertions(+), 8 deletions(-) diff --git a/airtime_mvc/locale/az/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/az/LC_MESSAGES/airtime.mo index 838bec92ce22ad25cbe4f1642845bef19d7daef1..e293c92a32eb8c53d07df70503cab611e44e9953 100644 GIT binary patch delta 21 ccmcb`e2aO)S}qe^BO?Vv11lrrjoXzO0Zx_%a{vGU delta 21 ccmcb`e2aO)S}tQ<15*V<11l55joXzO0Zx+!a{vGU diff --git a/airtime_mvc/locale/az/LC_MESSAGES/airtime.po b/airtime_mvc/locale/az/LC_MESSAGES/airtime.po index ec9ac97dc6..8db5754d05 100644 --- a/airtime_mvc/locale/az/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/az/LC_MESSAGES/airtime.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-03-05 10:41+0000\n" +"PO-Revision-Date: 2015-04-22 10:23+0000\n" "Last-Translator: Daniel James \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/airtime/language/az/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.mo index 332ac8e7160d19e8d7f00dc5905f05b4f4660b24..132c7efab23c390c12befb53491c3eaeb2b4fec6 100644 GIT binary patch delta 25 hcmaF)p84f_<_#YwbD8KGnJ5@oS{Ybu{yq6!G60=f3wZzl delta 25 hcmaF)p84f_<_#Ywa~bOzm?{_=SeY1Z{yq6!G60\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/airtime/language/de_AT/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.mo index 9be2d543a3f6170b01ddfbfd36adea2c10c03a3c..89ebe86424bb5372c5af3b5ddda460d420987b42 100644 GIT binary patch delta 25 hcmaEHpZUdo<_-C?xJ-17OcV?(tqd$SSI){01ptn&3Df`p delta 25 hcmaEHpZUdo<_-C?xQulTOce|btV|3ySI){01ptmb3C92c diff --git a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po index f8931c114a..1259b1f22e 100644 --- a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-03-05 10:41+0000\n" +"PO-Revision-Date: 2015-04-24 09:08+0000\n" "Last-Translator: Daniel James \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/airtime/language/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.mo index ee265c8042334eeb70ffa4a5fd61c51d7f484f74..48a0822fca462012a3d44a32039593de79b97f82 100644 GIT binary patch delta 21 ccmaFP{G55hS}qe^BO?Vv11lrrjoS?v0Z_OGng9R* delta 21 ccmaFP{G55hS}tQ<15*V<11l55joS?v0Z_FDng9R* diff --git a/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po b/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po index 5ec731b02a..79ceea7026 100644 --- a/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-03-05 10:41+0000\n" +"PO-Revision-Date: 2015-04-22 10:23+0000\n" "Last-Translator: Daniel James \n" "Language-Team: Armenian (Armenia) (http://www.transifex.com/projects/p/airtime/language/hy_AM/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/ja/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/ja/LC_MESSAGES/airtime.mo index 696b207b72d1007025b11f395ba8bfbec7c89c29..6495f6122c29cdcca496bf50e7c07b456261954a 100644 GIT binary patch delta 28 kcmew}m*vk~mJOFC^P1`!nCKcADHs}985wWBKUuaK0H^*6kpKVy delta 28 kcmew}m*vk~mJOFC^P1=y8tNLFC>WYqnV4?AKUuaK0H`VonE(I) diff --git a/airtime_mvc/locale/ja/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ja/LC_MESSAGES/airtime.po index d9398df2cc..b85c9ba3f7 100644 --- a/airtime_mvc/locale/ja/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ja/LC_MESSAGES/airtime.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2014-11-14 16:45+0000\n" +"PO-Revision-Date: 2015-04-22 10:23+0000\n" "Last-Translator: asantoni_sourcefabric \n" "Language-Team: Japanese (http://www.transifex.com/projects/p/airtime/language/ja/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/ka/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/ka/LC_MESSAGES/airtime.mo index 10c20223a8208634a80182c6159f4a55ed585445..f872aa823ec7f1951d1baf7d12b48022cd05fd1d 100644 GIT binary patch delta 21 ccmcb>e1UnwS}qe^BO?Vv11lrrjoT#|0Zj4+RR910 delta 21 ccmcb>e1UnwS}tQ<15*V<11l55joT#|0Zi`(RR910 diff --git a/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po index afd6cf1eee..e6cf6cd32b 100644 --- a/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-03-05 10:41+0000\n" +"PO-Revision-Date: 2015-04-22 10:23+0000\n" "Last-Translator: Daniel James \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/airtime/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.mo index 8e128f5e2bdcbf32cb7e820c4f39a2e0ba7d87bd..04a01409e353bd0775796788e2a94fede692b2bd 100644 GIT binary patch delta 25 gcmeA>!rXU+d4op>mx->CiGqQpm4U_PppHF}0ChzO$p8QV delta 25 gcmeA>!rXU+d4op>m$9yase++_m5JfzppHF}0Cdv`yZ`_I diff --git a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po index 5d5351e9d7..cfdb68bc46 100644 --- a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-03-05 10:41+0000\n" +"PO-Revision-Date: 2015-04-24 09:08+0000\n" "Last-Translator: Felipe Thomaz Pedroni\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/airtime/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/tr/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/tr/LC_MESSAGES/airtime.mo index aa3bf8090ed45f28d215a598d44f038f110b01a7..f9b85210df308b388c4559c32a0aaa1f2beb1481 100644 GIT binary patch delta 20 bcmewx{5N<*g*3Z~f`O%#fyL%}={i0DSRw}_ delta 20 bcmewx{5N<*g*3Z?f}x3(sp;l=={i0DSKtR7 diff --git a/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po b/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po index d19805aff4..d29d1dfd10 100644 --- a/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-04-20 14:55+0000\n" +"PO-Revision-Date: 2015-04-24 09:08+0000\n" "Last-Translator: M. Ömer Gölgeli \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/airtime/language/tr/)\n" "MIME-Version: 1.0\n" From 3d8a1cf9a642dbe8bab21221505639063963269b Mon Sep 17 00:00:00 2001 From: localizer Date: Fri, 24 Apr 2015 10:43:06 +0000 Subject: [PATCH 32/35] updated translation resources --- .../locale/en_GB/LC_MESSAGES/airtime.mo | Bin 61416 -> 61416 bytes .../locale/en_GB/LC_MESSAGES/airtime.po | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.mo index 89ebe86424bb5372c5af3b5ddda460d420987b42..1104aca05b306bdaf3133f17b882d7cb13dda70b 100644 GIT binary patch delta 20 ccmaEHpZUdo<_#sYSPc!VOpG>H&dLu30B6+*;{X5v delta 20 ccmaEHpZUdo<_#sYSPd+#3@kQR&dLu30B9r#?EnA( diff --git a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po index 1259b1f22e..faa4dc4afc 100644 --- a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-04-24 09:08+0000\n" +"PO-Revision-Date: 2015-04-24 10:42+0000\n" "Last-Translator: Daniel James \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/airtime/language/en_GB/)\n" "MIME-Version: 1.0\n" From 4b307d6b472a6ce9d4310181ca5ddb364fd61347 Mon Sep 17 00:00:00 2001 From: Duncan Sommerville Date: Mon, 27 Apr 2015 13:52:55 -0400 Subject: [PATCH 33/35] Fix for vertical scrollbar issue --- airtime_mvc/application/Bootstrap.php | 2 +- .../application/layouts/scripts/layout.phtml | 2 +- airtime_mvc/public/css/styles.css | 27 ++++++++++++++----- .../public/js/airtime/common/common.js | 16 +++++------ 4 files changed, 31 insertions(+), 16 deletions(-) diff --git a/airtime_mvc/application/Bootstrap.php b/airtime_mvc/application/Bootstrap.php index a7910dadf7..c305efcfca 100644 --- a/airtime_mvc/application/Bootstrap.php +++ b/airtime_mvc/application/Bootstrap.php @@ -106,7 +106,7 @@ protected function _initHeadScript() $view->headScript()->appendFile($baseUrl.'js/libs/underscore-min.js?'.$CC_CONFIG['airtime_version'],'text/javascript'); - $view->headScript()->appendFile($baseUrl.'js/libs/jquery.stickyPanel.js?'.$CC_CONFIG['airtime_version'],'text/javascript'); + // $view->headScript()->appendFile($baseUrl.'js/libs/jquery.stickyPanel.js?'.$CC_CONFIG['airtime_version'],'text/javascript'); $view->headScript()->appendFile($baseUrl.'js/qtip/jquery.qtip.js?'.$CC_CONFIG['airtime_version'],'text/javascript'); $view->headScript()->appendFile($baseUrl.'js/jplayer/jquery.jplayer.min.js?'.$CC_CONFIG['airtime_version'], 'text/javascript'); $view->headScript()->appendFile($baseUrl.'js/sprintf/sprintf-0.7-beta1.js?'.$CC_CONFIG['airtime_version'],'text/javascript'); diff --git a/airtime_mvc/application/layouts/scripts/layout.phtml b/airtime_mvc/application/layouts/scripts/layout.phtml index fc46df5c40..b11a22d5c4 100644 --- a/airtime_mvc/application/layouts/scripts/layout.phtml +++ b/airtime_mvc/application/layouts/scripts/layout.phtml @@ -11,7 +11,7 @@ partial('partialviews/trialBox.phtml', array("is_trial"=>$this->isTrial(), "trial_remain"=> $this->trialRemaining())) ?> -
+
versionNotify(); $sss = $this->SourceSwitchStatus(); diff --git a/airtime_mvc/public/css/styles.css b/airtime_mvc/public/css/styles.css index 44e0db75b0..16f0fc8fca 100644 --- a/airtime_mvc/public/css/styles.css +++ b/airtime_mvc/public/css/styles.css @@ -143,8 +143,22 @@ select { * html .clearfix, * html li { height: 1%;} .clearfix, #side_playlist li { display: block; } - /* Master Panel */ + +.sticky { + position: fixed; + width: 100%; + left: 0; + top: 0; + z-index: 2000; + border-top: 0; +} + +.push { + width: 100%; + height: 139px; +} + #sticky { position:fixed; height:130px; @@ -152,7 +166,6 @@ select { left:0; } - #master-panel { background:#3d3d3d url(images/masterpanel_bg.png) repeat-x 0 0; height:100px; @@ -363,6 +376,8 @@ select { .wrapper { + position: absolute; + top: 139px; margin: 0 5px 0 5px; padding:10px 0 0 0; } @@ -1110,10 +1125,10 @@ input[type="checkbox"] { left:0; margin-bottom:140px; }*/ -.sticky { - padding:0; - width:100%; -} +/*.sticky {*/ + /*padding:0;*/ + /*width:100%;*/ +/*}*/ .floated-panel { margin-top:0; diff --git a/airtime_mvc/public/js/airtime/common/common.js b/airtime_mvc/public/js/airtime/common/common.js index 7a043c286c..2a8ce9d04d 100644 --- a/airtime_mvc/public/js/airtime/common/common.js +++ b/airtime_mvc/public/js/airtime/common/common.js @@ -1,11 +1,11 @@ $(document).ready(function() { - $("#Panel").stickyPanel({ - topPadding: 1, - afterDetachCSSClass: "floated-panel", - savePanelSpace: true - }); - + /* Removed as this is now (hopefully) unnecessary */ + //$("#Panel").stickyPanel({ + // topPadding: 1, + // afterDetachCSSClass: "floated-panel", + // savePanelSpace: true + //}); //this statement tells the browser to fade out any success message after 5 seconds setTimeout(function(){$(".success").fadeOut("slow", function(){$(this).empty()});}, 5000); @@ -52,8 +52,8 @@ var i18n_days_short = [ $.i18n._("We"), $.i18n._("Th"), $.i18n._("Fr"), - $.i18n._("Sa"), -] + $.i18n._("Sa") +]; function adjustDateToServerDate(date, serverTimezoneOffset){ //date object stores time in the browser's localtime. We need to artificially shift From 7676ec56434a91a5a1b32d8131184fd23f818355 Mon Sep 17 00:00:00 2001 From: localizer Date: Thu, 7 May 2015 08:04:23 +0000 Subject: [PATCH 34/35] updated translation resources --- airtime_mvc/locale/az/LC_MESSAGES/airtime.mo | Bin 474 -> 474 bytes airtime_mvc/locale/az/LC_MESSAGES/airtime.po | 2 +- .../locale/cs_CZ/LC_MESSAGES/airtime.mo | Bin 61842 -> 61842 bytes .../locale/cs_CZ/LC_MESSAGES/airtime.po | 2 +- .../locale/de_AT/LC_MESSAGES/airtime.mo | Bin 63465 -> 63465 bytes .../locale/de_AT/LC_MESSAGES/airtime.po | 2 +- .../locale/en_GB/LC_MESSAGES/airtime.mo | Bin 61416 -> 61416 bytes .../locale/en_GB/LC_MESSAGES/airtime.po | 2 +- .../locale/hu_HU/LC_MESSAGES/airtime.mo | Bin 67078 -> 67078 bytes .../locale/hu_HU/LC_MESSAGES/airtime.po | 2 +- .../locale/hy_AM/LC_MESSAGES/airtime.mo | Bin 487 -> 487 bytes .../locale/hy_AM/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/ka/LC_MESSAGES/airtime.mo | Bin 464 -> 464 bytes airtime_mvc/locale/ka/LC_MESSAGES/airtime.po | 2 +- .../locale/pt_BR/LC_MESSAGES/airtime.mo | Bin 57870 -> 57870 bytes .../locale/pt_BR/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/tr/LC_MESSAGES/airtime.mo | Bin 10749 -> 18475 bytes airtime_mvc/locale/tr/LC_MESSAGES/airtime.po | 240 +++++++++--------- 18 files changed, 128 insertions(+), 128 deletions(-) diff --git a/airtime_mvc/locale/az/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/az/LC_MESSAGES/airtime.mo index e293c92a32eb8c53d07df70503cab611e44e9953..6a9fe996776e6e0d98bb3c67f0098b3d6151a3c1 100644 GIT binary patch delta 18 Zcmcb`e2aO)26ht#Lvt%5gN@sj838_71?B(% delta 18 Zcmcb`e2aO)26iI_Ljx-#gVx diff --git a/airtime_mvc/locale/az/LC_MESSAGES/airtime.po b/airtime_mvc/locale/az/LC_MESSAGES/airtime.po index 8db5754d05..3e889413a5 100644 --- a/airtime_mvc/locale/az/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/az/LC_MESSAGES/airtime.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-04-22 10:23+0000\n" +"PO-Revision-Date: 2015-04-24 17:20+0000\n" "Last-Translator: Daniel James \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/airtime/language/az/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.mo index 5d7bc53422b7b2104ef545aa3d2d91f760182641..6f03a300d2b1c1ec7f02482032d8dcb63d84e106 100644 GIT binary patch delta 28 jcmbRAn0eA;<_%LO^P1`!0Fk+ZfrXWU@#ck-KgI$8o2m+m delta 28 kcmbRAn0eA;<_%LO^P1=y8tNLFC>U5;nObaKIQe5N0Gpo*j{pDw diff --git a/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.po b/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.po index 10ab9c6b03..2d9e40d3d2 100644 --- a/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2014-11-14 09:58+0000\n" +"PO-Revision-Date: 2015-05-07 08:03+0000\n" "Last-Translator: Daniel James \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/airtime/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.mo index 132c7efab23c390c12befb53491c3eaeb2b4fec6..f787eac52ebe94863660c18c2e8f2e40297f4c7b 100644 GIT binary patch delta 20 ccmaF)p84f_<_+H_vl^OP85wN;J^5WS0CSWIivR!s delta 20 ccmaF)p84f_<_+H_vl>`h8CY!oJ^5WS0CT\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/airtime/language/de_AT/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.mo index 1104aca05b306bdaf3133f17b882d7cb13dda70b..301963d0e1c4b9f6335143a452e3b0ba01dc67bc 100644 GIT binary patch delta 25 hcmaEHpZUdo<_-C?xJ-2o%oPkQtPG4dSI){01ptnq3D5ul delta 25 hcmaEHpZUdo<_-C?xJ-17OcV?atW1nHSI){01ptm;3CaKf diff --git a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po index faa4dc4afc..15aa29cfc8 100644 --- a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-04-24 10:42+0000\n" +"PO-Revision-Date: 2015-05-07 08:03+0000\n" "Last-Translator: Daniel James \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/airtime/language/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.mo index aa239668585c687a5159ec1d274d81438e34c355..1d81207a81e928e0c829be669391616b16fbc4bc 100644 GIT binary patch delta 25 gcmZqcVQK4O*^obr%T(9ET*1J?%D{MY<*eRp0B(o~oB#j- delta 25 gcmZqcVQK4O*^obr%TU+QQo+#J%FtkQ<*eRp0B%DFl>h($ diff --git a/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po b/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po index 72fa42b509..c3fbdcbef0 100644 --- a/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-01-19 13:10+0000\n" +"PO-Revision-Date: 2015-05-07 08:03+0000\n" "Last-Translator: Zsolt Magyar \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/airtime/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.mo index 48a0822fca462012a3d44a32039593de79b97f82..fcfd16e90906b47d804d372a51cd4c7d4d7852f6 100644 GIT binary patch delta 18 ZcmaFP{G55h26ht#Lvt%5gN@q_7y&>n1`PlJ delta 18 ZcmaFP{G55h26iI_Ljx-#\n" "Language-Team: Armenian (Armenia) (http://www.transifex.com/projects/p/airtime/language/hy_AM/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/ka/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/ka/LC_MESSAGES/airtime.mo index f872aa823ec7f1951d1baf7d12b48022cd05fd1d..9e882a833d4b6dc1547fa2c95071c298c60033ec 100644 GIT binary patch delta 18 Zcmcb>e1Unw26ht#Lvt%5gN@rI838=;1;_vZ delta 18 Zcmcb>e1Unw26iI_Ljx-#\n" "Language-Team: Georgian (http://www.transifex.com/projects/p/airtime/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.mo index 04a01409e353bd0775796788e2a94fede692b2bd..965cf25b70653fcb51935daed993e498af06fff1 100644 GIT binary patch delta 25 gcmeA>!rXU+d4op>m#MCSxq^X(m4Wf*ppHF}0ChJA#Q*>R delta 25 gcmeA>!rXU+d4op>mx->CiGqQpm4U_PppHF}0ChzO$p8QV diff --git a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po index cfdb68bc46..3819d8109e 100644 --- a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: Airtime\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-13 13:55-0500\n" -"PO-Revision-Date: 2015-04-24 09:08+0000\n" +"PO-Revision-Date: 2015-05-07 08:03+0000\n" "Last-Translator: Felipe Thomaz Pedroni\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/airtime/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/airtime_mvc/locale/tr/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/tr/LC_MESSAGES/airtime.mo index f9b85210df308b388c4559c32a0aaa1f2beb1481..ba59d9ca3509ec183708a8b3b91ad70b5b67d3f6 100644 GIT binary patch literal 18475 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 delta 5010 zcmZA432;>P0mt!wG#V2@kwX-6yg))o0vP08xk-Rw; z1}uLREm96`^br(>nx-|nAYZ}{!!|E~Y}-fq}? zPsTrMk|%p+-fP%iB)O#9`Nm{q81wCgI?C3=mJY7$ptA8f}0dj z5eu=}oo{mITiy9psF}MRRnJ}S{6ONA7$#x~&oRL@iNY z)Y25;;kl^#u0b{Uebfxrp=PEDS$osgoB7v>*SZrMP&Yh)df2w3hp(b4_!L#~ z7pVKbar>FfuR4%}y1xk3(Q;Hn6{s1Q=*~}d=c_gUs&F0$RADWa;W8YIcex9nLXGSI z^3VL54>kA>>i*AB9sC+cpt&?X(vhf+Ohhg5G`D{pa;d3LQqa?zK&|CE)YNW5b!Z3j zz?#QUBRGU==rF3{-=Ri$40YcrRDGX0zeUYRx4tYF_Tod=m!sNCj-#N4Dp5UJfEv+q z)QH1)8OBi+wL3SV8r*_gWepj31)z%jQ8)y*=?_z5fF# z=!OyQ#8^~?)tHAhs5QIZnRK?J8rXvR0@{IE`-h!Rp=PEFHB-k>*PlQQ?Gw8VKSee4SJYI0fod>=?^WH`3)PT^n!yrO zM~9;ZI39K1Ow>#*DoCaqSiu2RunINR>rgjtM%}m*Rq^Af5j^eoUqDTLmplFns)099 z9Y2YBXum`~136y$3#|h6m3?)R0?&nMMK#cl>cA#cLpz;&P;0jjb=`hc#}1*saE_p^ zKZ9DLENa(vJy0{(7d3PJQRh7zjmc7XVi~G|AZi3n$Uk!vADW2=Q58Ibs^C%NjWbW9 zmhN>_2R=m&;B!snA95nmI7~*Ifdup zcc>0z4od(2_dr!N26cWSYU(Rd4b8{%(ML7Vi0bf4)b%%`-mcZiq?z@o-++CCSbu%@ zzs>>LGzBH;pWiA}1udwlkE42gE2?Anp(@;o8u=5bj=Y4r?>MUAw^397zB}HB_0jd0 zqpmL-%>3)Xcz0kf>UCU-8c7269^Zi)@mA+9%w)gQ?e9mPW^>pbe+Sip_faGL6JCJd zp*o&bnr^pul7cEKMm11|**FR{Ba={1d(heHT#dSK1FGUpsF~S{*|;0kP$%k{cnQzP zH=XY|lP4*tfsZg7zr+mOMYQRhwhE#V>VbWpOd?B&M}9@dkwrw?BWcXf@dsq1+yAkX zuY}Zc@&%;oj0vSa(;qurd5yCPr;v7XGucmulkr3|5F`J;=^@h=Csib<9X5UOTutT> zy*a7&J0Uo}cGxZb+TQ(U+wJ|gWE1>zb$T`EZiKZu30$E=);@W)?62i z1x$5wOEeburbojKsols8emKcr*M^#1@y-*{vl@ z?4rR#&x`xF4&fvLgF+SzZ5@aFoeuFxRv) zzVwwUGL1p|ZutP~4Vj;_IOxZWJ_7dCkUMSr&@~sf#{F2l)ms^gH`<}Yl363YigAI8 zv7Md6Ix_5=!++B~wX!8)Ki1XJ9I%J3++){_m~1OYj_J|$WJ}x+o7s#o%=v)*{irc^ z;OGjwWb{zGck~rDXUyGp*O-fnYW)Z|o66t~v7pz`)$#JSt`3%3E8JwNTB7tJU^~Ya z+CPpRYKM)x)Xo~WvHO3mYBXTW0{!gbK!1BnV77fTup!G!_=&ELh`sZwfSoe_Xm(9B z(&i\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/airtime/language/tr/)\n" "MIME-Version: 1.0\n" @@ -1007,282 +1007,282 @@ msgstr "Otomatik Devreye Sok" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:33 msgid "Switch Transition Fade (s)" -msgstr "" +msgstr "Geçiş Transition Fade'i [Switch Transition Fade]" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:36 msgid "enter a time in seconds 00{.000000}" -msgstr "" +msgstr "saniye olarak bir değer giriniz 00{.000000}" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:45 msgid "Master Username" -msgstr "" +msgstr "Master Kullanıcı adı" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:62 msgid "Master Password" -msgstr "" +msgstr "Master Şifre" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:70 msgid "Master Source Connection URL" -msgstr "" +msgstr "Master Source Bağlantı URL" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:78 msgid "Show Source Connection URL" -msgstr "" +msgstr "Source Bağlantı URL'sini göster" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:87 msgid "Master Source Port" -msgstr "" +msgstr "Master Source Port'u" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:96 msgid "Master Source Mount Point" -msgstr "" +msgstr "Master Source Mount Adresi" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:106 msgid "Show Source Port" -msgstr "" +msgstr "Source Port'unu Göster" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:115 msgid "Show Source Mount Point" -msgstr "" +msgstr "Source Mount Adresini Göster" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:153 msgid "You cannot use same port as Master DJ port." -msgstr "" +msgstr "Master DJ Port'u ile aynı portu kullanamazsınız" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:164 #: airtime_mvc/application/forms/LiveStreamingPreferences.php:182 #, php-format msgid "Port %s is not available" -msgstr "" +msgstr "Port %s kullanılamaz" #: airtime_mvc/application/forms/SupportSettings.php:34 #: airtime_mvc/application/forms/RegisterAirtime.php:39 msgid "Phone:" -msgstr "" +msgstr "Telefon:" #: airtime_mvc/application/forms/SupportSettings.php:57 #: airtime_mvc/application/forms/RegisterAirtime.php:62 msgid "Station Web Site:" -msgstr "" +msgstr "Radyo Web Sitesi:" #: airtime_mvc/application/forms/SupportSettings.php:68 #: airtime_mvc/application/forms/RegisterAirtime.php:73 msgid "Country:" -msgstr "" +msgstr "Ülke:" #: airtime_mvc/application/forms/SupportSettings.php:79 #: airtime_mvc/application/forms/RegisterAirtime.php:84 msgid "City:" -msgstr "" +msgstr "Şehir:" #: airtime_mvc/application/forms/SupportSettings.php:91 #: airtime_mvc/application/forms/RegisterAirtime.php:96 msgid "Station Description:" -msgstr "" +msgstr "Radyo Tanımı:" #: airtime_mvc/application/forms/SupportSettings.php:101 #: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" -msgstr "" +msgstr "Radyo Logosu:" #: airtime_mvc/application/forms/SupportSettings.php:112 #: airtime_mvc/application/forms/RegisterAirtime.php:116 #: airtime_mvc/application/controllers/LocaleController.php:330 msgid "Send support feedback" -msgstr "" +msgstr "Destek Geribildirimi gönder" #: airtime_mvc/application/forms/SupportSettings.php:122 #: airtime_mvc/application/forms/RegisterAirtime.php:126 #, php-format msgid "Promote my station on %s" -msgstr "" +msgstr "Radyomu %s'da tanıt" #: airtime_mvc/application/forms/SupportSettings.php:150 #: airtime_mvc/application/forms/RegisterAirtime.php:151 #, php-format msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "" +msgstr "Bu kutuyu işaretleyerek %s'un %sgizlilik politikası%s'nı onaylıyorum" #: airtime_mvc/application/forms/SupportSettings.php:174 #: airtime_mvc/application/forms/RegisterAirtime.php:169 msgid "You have to agree to privacy policy." -msgstr "" +msgstr "Gizlilik politikasını kabul etmeniz gerekmektedir." #: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:26 #: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 msgid "Value is required and can't be empty" -msgstr "" +msgstr "Değer gerekli ve boş bırakılamaz" #: airtime_mvc/application/forms/EditHistoryItem.php:32 #: airtime_mvc/application/services/HistoryService.php:1146 msgid "Start Time" -msgstr "" +msgstr "Başlangıç Saati" #: airtime_mvc/application/forms/EditHistoryItem.php:44 #: airtime_mvc/application/services/HistoryService.php:1147 msgid "End Time" -msgstr "" +msgstr "Bitiş Saati" #: airtime_mvc/application/forms/EditHistoryItem.php:57 #: airtime_mvc/application/controllers/LocaleController.php:389 #: airtime_mvc/application/views/scripts/form/edit-history-item.phtml:53 msgid "No Show" -msgstr "" +msgstr "Show Yok" #: airtime_mvc/application/forms/AddShowRR.php:10 msgid "Record from Line In?" -msgstr "" +msgstr "Line In'den Kaydet?" #: airtime_mvc/application/forms/AddShowRR.php:16 msgid "Rebroadcast?" -msgstr "" +msgstr "Tekrar yayınla?" #: airtime_mvc/application/forms/AddShowLiveStream.php:10 #, php-format msgid "Use %s Authentication:" -msgstr "" +msgstr "%s Kimlik Doğrulamasını Kullan" #: airtime_mvc/application/forms/AddShowLiveStream.php:16 msgid "Use Custom Authentication:" -msgstr "" +msgstr "Özel Kimlik Doğrulama Kullan" #: airtime_mvc/application/forms/AddShowLiveStream.php:26 msgid "Custom Username" -msgstr "" +msgstr "Özel Kullanıcı Adı" #: airtime_mvc/application/forms/AddShowLiveStream.php:39 msgid "Custom Password" -msgstr "" +msgstr "Özel Şifre" #: airtime_mvc/application/forms/AddShowLiveStream.php:63 msgid "Username field cannot be empty." -msgstr "" +msgstr "Kullanıcı adı kısmı boş bırakılamaz." #: airtime_mvc/application/forms/AddShowLiveStream.php:68 msgid "Password field cannot be empty." -msgstr "" +msgstr "Şifre kısmı boş bırakılamaz." #: airtime_mvc/application/forms/PasswordRestore.php:14 msgid "E-mail" -msgstr "" +msgstr "E-posta" #: airtime_mvc/application/forms/PasswordRestore.php:36 msgid "Restore password" -msgstr "" +msgstr "Şifreyi geri al" #: airtime_mvc/application/forms/StreamSetting.php:22 msgid "Hardware Audio Output" -msgstr "" +msgstr "Donanımsal Ses Çıkışı" #: airtime_mvc/application/forms/StreamSetting.php:33 msgid "Output Type" -msgstr "" +msgstr "Ses Çıkış Türü" #: airtime_mvc/application/forms/StreamSetting.php:44 msgid "Icecast Vorbis Metadata" -msgstr "" +msgstr "Icecast Vorbis Metadata" #: airtime_mvc/application/forms/StreamSetting.php:54 msgid "Stream Label:" -msgstr "" +msgstr "Yayın Etiketi:" #: airtime_mvc/application/forms/StreamSetting.php:55 msgid "Artist - Title" -msgstr "" +msgstr "Şarkıcı - Parça Adı" #: airtime_mvc/application/forms/StreamSetting.php:56 msgid "Show - Artist - Title" -msgstr "" +msgstr "Show - Şarkıcı - Parça Adı" #: airtime_mvc/application/forms/StreamSetting.php:57 msgid "Station name - Show name" -msgstr "" +msgstr "Radyo adı - Show adı" #: airtime_mvc/application/forms/StreamSetting.php:63 msgid "Off Air Metadata" -msgstr "" +msgstr "Yayın Dışında Gösterilecek Etiket" #: airtime_mvc/application/forms/StreamSetting.php:69 msgid "Enable Replay Gain" -msgstr "" +msgstr "ReplayGain'i aktif et" #: airtime_mvc/application/forms/StreamSetting.php:75 msgid "Replay Gain Modifier" -msgstr "" +msgstr "ReplayGain Değeri" #: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 msgid "" "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "" +msgstr "'%value%' kullanici@site.com yapısına uymayan geçersiz bir adres" #: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 msgid "'%value%' does not fit the date format '%format%'" -msgstr "" +msgstr "'%value%' değeri '%format%' zaman formatına uymuyor" #: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 msgid "'%value%' is less than %min% characters long" -msgstr "" +msgstr "'%value%' değeri olması gereken '%min%' karakterden daha az" #: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 msgid "'%value%' is more than %max% characters long" -msgstr "" +msgstr "'%value%' değeri olması gereken '%max%' karakterden daha fazla" #: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "" +msgstr "'%value%' değeri '%min%' ve '%max%' değerleri arasında değil" #: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 msgid "Passwords do not match" -msgstr "" +msgstr "Girdiğiniz şifreler örtüşmüyor." #: airtime_mvc/application/forms/AddShowWhen.php:16 msgid "'%value%' does not fit the time format 'HH:mm'" -msgstr "" +msgstr "'%value%' değeri 'HH:mm' saat formatına uymuyor" #: airtime_mvc/application/forms/AddShowWhen.php:22 msgid "Date/Time Start:" -msgstr "" +msgstr "Başlangıç Tarih/Saat'i:" #: airtime_mvc/application/forms/AddShowWhen.php:49 msgid "Date/Time End:" -msgstr "" +msgstr "Bitiş Tarih/Saat'i:" #: airtime_mvc/application/forms/AddShowWhen.php:74 msgid "Duration:" -msgstr "" +msgstr "Uzunluğu:" #: airtime_mvc/application/forms/AddShowWhen.php:83 msgid "Timezone:" -msgstr "" +msgstr "Zaman Dilimi:" #: airtime_mvc/application/forms/AddShowWhen.php:92 msgid "Repeats?" -msgstr "" +msgstr "Tekrar Ediyor mu?" #: airtime_mvc/application/forms/AddShowWhen.php:124 msgid "Cannot create show in the past" -msgstr "" +msgstr "Geçmiş tarihli bir show oluşturamazsınız" #: airtime_mvc/application/forms/AddShowWhen.php:132 msgid "Cannot modify start date/time of the show that is already started" -msgstr "" +msgstr "Başlamış olan bir yayının tarih/saat bilgilerini değiştiremezsiniz" #: airtime_mvc/application/forms/AddShowWhen.php:141 #: airtime_mvc/application/models/Show.php:278 msgid "End date/time cannot be in the past" -msgstr "" +msgstr "Bitiş tarihi geçmişte olamaz" #: airtime_mvc/application/forms/AddShowWhen.php:149 msgid "Cannot have duration < 0m" -msgstr "" +msgstr "Uzunluk < 0dk'dan kısa olamaz" #: airtime_mvc/application/forms/AddShowWhen.php:153 msgid "Cannot have duration 00h 00m" -msgstr "" +msgstr "00s 00dk Uzunluk olamaz" #: airtime_mvc/application/forms/AddShowWhen.php:160 msgid "Cannot have duration greater than 24h" -msgstr "" +msgstr "Yayın süresi 24 saati geçemez" #: airtime_mvc/application/forms/AddShowWhen.php:287 #: airtime_mvc/application/forms/AddShowWhen.php:301 @@ -1291,104 +1291,104 @@ msgstr "" #: airtime_mvc/application/forms/AddShowWhen.php:336 #: airtime_mvc/application/services/CalendarService.php:304 msgid "Cannot schedule overlapping shows" -msgstr "" +msgstr "Üst üste binen show'lar olamaz" #: airtime_mvc/application/forms/AddShowWhat.php:26 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:33 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:146 msgid "Name:" -msgstr "" +msgstr "İsim:" #: airtime_mvc/application/forms/AddShowWhat.php:30 msgid "Untitled Show" -msgstr "" +msgstr "İsimsiz Show" #: airtime_mvc/application/forms/AddShowWhat.php:36 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150 msgid "URL:" -msgstr "" +msgstr "URL" #: airtime_mvc/application/forms/AddShowWhat.php:54 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:40 #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:149 msgid "Description:" -msgstr "" +msgstr "Açıklama:" #: airtime_mvc/application/forms/SoundcloudPreferences.php:16 msgid "Automatically Upload Recorded Shows" -msgstr "" +msgstr "Kaydedilen Show'ları Otomatik olarak Karşıya Yükle" #: airtime_mvc/application/forms/SoundcloudPreferences.php:26 msgid "Enable SoundCloud Upload" -msgstr "" +msgstr "SoundCloud'a Yüklemeyi Aktifleştir" #: airtime_mvc/application/forms/SoundcloudPreferences.php:36 msgid "Automatically Mark Files \"Downloadable\" on SoundCloud" -msgstr "" +msgstr "SoundCloud'da dosyaları otomatik olarak \"İndirilebilir\" olarak işaretle" #: airtime_mvc/application/forms/SoundcloudPreferences.php:47 msgid "SoundCloud Email" -msgstr "" +msgstr "SoundCloud Email Adresi" #: airtime_mvc/application/forms/SoundcloudPreferences.php:67 msgid "SoundCloud Password" -msgstr "" +msgstr "SoundCloud Şifreniz" #: airtime_mvc/application/forms/SoundcloudPreferences.php:87 msgid "SoundCloud Tags: (separate tags with spaces)" -msgstr "" +msgstr "SoundCloud Etiketleri: (boşluklarla ayırınız)" #: airtime_mvc/application/forms/SoundcloudPreferences.php:99 msgid "Default Genre:" -msgstr "" +msgstr "Varsayılan Tür:" #: airtime_mvc/application/forms/SoundcloudPreferences.php:109 msgid "Default Track Type:" -msgstr "" +msgstr "Varsayılan Parça Türü:" #: airtime_mvc/application/forms/SoundcloudPreferences.php:113 msgid "Original" -msgstr "" +msgstr "Orjinal" #: airtime_mvc/application/forms/SoundcloudPreferences.php:114 msgid "Remix" -msgstr "" +msgstr "Remix" #: airtime_mvc/application/forms/SoundcloudPreferences.php:115 msgid "Live" -msgstr "" +msgstr "Canlı" #: airtime_mvc/application/forms/SoundcloudPreferences.php:116 msgid "Recording" -msgstr "" +msgstr "Kayıt" #: airtime_mvc/application/forms/SoundcloudPreferences.php:117 msgid "Spoken" -msgstr "" +msgstr "Sözlü" #: airtime_mvc/application/forms/SoundcloudPreferences.php:118 msgid "Podcast" -msgstr "" +msgstr "Podcast" #: airtime_mvc/application/forms/SoundcloudPreferences.php:119 msgid "Demo" -msgstr "" +msgstr "Demo" #: airtime_mvc/application/forms/SoundcloudPreferences.php:120 msgid "Work in progress" -msgstr "" +msgstr "Halen Devam Eden" #: airtime_mvc/application/forms/SoundcloudPreferences.php:121 msgid "Stem" -msgstr "" +msgstr "Stem" #: airtime_mvc/application/forms/SoundcloudPreferences.php:122 msgid "Loop" -msgstr "" +msgstr "Tekrar Et" #: airtime_mvc/application/forms/SoundcloudPreferences.php:123 msgid "Sound Effect" -msgstr "" +msgstr "Ses Efekti" #: airtime_mvc/application/forms/SoundcloudPreferences.php:124 msgid "One Shot Sample" @@ -1396,19 +1396,19 @@ msgstr "" #: airtime_mvc/application/forms/SoundcloudPreferences.php:125 msgid "Other" -msgstr "" +msgstr "Diğer" #: airtime_mvc/application/forms/SoundcloudPreferences.php:133 msgid "Default License:" -msgstr "" +msgstr "Varsayılan Lisans Türü:" #: airtime_mvc/application/forms/SoundcloudPreferences.php:137 msgid "The work is in the public domain" -msgstr "" +msgstr "Eser halka açık olarak kayıtlı" #: airtime_mvc/application/forms/SoundcloudPreferences.php:138 msgid "All rights are reserved" -msgstr "" +msgstr "Tüm Hakları Saklıdır" #: airtime_mvc/application/forms/SoundcloudPreferences.php:139 msgid "Creative Commons Attribution" @@ -1436,19 +1436,19 @@ msgstr "" #: airtime_mvc/application/forms/EditUser.php:125 msgid "Interface Timezone:" -msgstr "" +msgstr "Arayüz Zaman Dilimi" #: airtime_mvc/application/forms/EmailServerPreferences.php:17 msgid "Enable System Emails (Password Reset)" -msgstr "" +msgstr "Sistem Epostalarını Aktif Et (Şifre Sıfırlama)" #: airtime_mvc/application/forms/EmailServerPreferences.php:27 msgid "Reset Password 'From' Email" -msgstr "" +msgstr "Şifre Sıfırlama epostası 'Kimden' kısmı" #: airtime_mvc/application/forms/EmailServerPreferences.php:34 msgid "Configure Mail Server" -msgstr "" +msgstr "Posta Sunucusu Ayarları" #: airtime_mvc/application/forms/EmailServerPreferences.php:43 msgid "Requires Authentication" @@ -1538,7 +1538,7 @@ msgstr "" #: airtime_mvc/application/controllers/LocaleController.php:32 msgid "Live Stream" -msgstr "" +msgstr "Canlı yayın" #: airtime_mvc/application/controllers/LocaleController.php:33 msgid "Nothing Scheduled" @@ -1649,12 +1649,12 @@ msgstr "" #: airtime_mvc/application/controllers/LocaleController.php:89 msgid "Loading..." -msgstr "" +msgstr "Yükleniyor..." #: airtime_mvc/application/controllers/LocaleController.php:90 #: airtime_mvc/application/controllers/LocaleController.php:390 msgid "All" -msgstr "" +msgstr "Tümü" #: airtime_mvc/application/controllers/LocaleController.php:91 msgid "Files" @@ -2148,7 +2148,7 @@ msgstr "" #: airtime_mvc/application/controllers/LocaleController.php:255 msgid "Ok" -msgstr "" +msgstr "OK" #: airtime_mvc/application/controllers/LocaleController.php:256 msgid "Contents of Show" @@ -2395,11 +2395,11 @@ msgstr "" #: airtime_mvc/application/controllers/LocaleController.php:379 #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:3 msgid "Close" -msgstr "" +msgstr "Kapat" #: airtime_mvc/application/controllers/LocaleController.php:353 msgid "Hour" -msgstr "" +msgstr "Cmt" #: airtime_mvc/application/controllers/LocaleController.php:354 msgid "Minute" @@ -2407,7 +2407,7 @@ msgstr "" #: airtime_mvc/application/controllers/LocaleController.php:355 msgid "Done" -msgstr "" +msgstr "OK" #: airtime_mvc/application/controllers/LocaleController.php:358 msgid "Select files" @@ -2625,7 +2625,7 @@ msgstr "" #: airtime_mvc/application/controllers/LibraryController.php:189 #: airtime_mvc/application/controllers/ShowbuilderController.php:194 msgid "Preview" -msgstr "" +msgstr "Ön izleme" #: airtime_mvc/application/controllers/LibraryController.php:210 #: airtime_mvc/application/controllers/LibraryController.php:234 @@ -2648,7 +2648,7 @@ msgstr "" #: airtime_mvc/application/services/CalendarService.php:200 #: airtime_mvc/application/services/CalendarService.php:205 msgid "Delete" -msgstr "" +msgstr "Sil" #: airtime_mvc/application/controllers/LibraryController.php:226 msgid "Duplicate Playlist" @@ -2658,7 +2658,7 @@ msgstr "" #: airtime_mvc/application/controllers/LibraryController.php:263 #: airtime_mvc/application/services/CalendarService.php:156 msgid "Edit" -msgstr "" +msgstr "Düzenle" #: airtime_mvc/application/controllers/LibraryController.php:276 msgid "Soundcloud" @@ -2776,7 +2776,7 @@ msgstr "" #: airtime_mvc/application/configs/navigation.php:92 msgid "History" -msgstr "" +msgstr "Geçmiş" #: airtime_mvc/application/configs/navigation.php:97 msgid "Playout History" @@ -2844,7 +2844,7 @@ msgstr "" #: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:18 #: airtime_mvc/application/views/scripts/form/add-show-rebroadcast-absolute.phtml:18 msgid "Remove" -msgstr "" +msgstr "Kaldır" #: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:41 #: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:28 @@ -2873,7 +2873,7 @@ msgstr "" #: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:120 #: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:164 msgid "OK" -msgstr "" +msgstr "OK" #: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:120 #: airtime_mvc/application/views/scripts/form/preferences_livestream.phtml:164 @@ -2940,7 +2940,7 @@ msgstr "" #: airtime_mvc/application/views/scripts/form/login.phtml:36 #: airtime_mvc/application/views/scripts/login/password-restore.phtml:3 msgid "Reset password" -msgstr "" +msgstr "Parolayı değiştir" #: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:9 #: airtime_mvc/application/views/scripts/form/preferences_watched_dirs.phtml:27 @@ -3177,7 +3177,7 @@ msgstr "" #: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:23 msgid "previous" -msgstr "" +msgstr "önceki" #: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:28 msgid "play" @@ -3189,11 +3189,11 @@ msgstr "" #: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:37 msgid "next" -msgstr "" +msgstr "sonraki" #: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:42 msgid "stop" -msgstr "" +msgstr "Durdur" #: airtime_mvc/application/views/scripts/audiopreview/audio-preview.phtml:60 #: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:90 @@ -3233,7 +3233,7 @@ msgstr "" #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:24 msgid "Isrc Number:" -msgstr "" +msgstr "ISRC No:" #: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:27 msgid "File Path:" @@ -3321,7 +3321,7 @@ msgstr "" #: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:3 msgid "Share" -msgstr "" +msgstr "Paylaş" #: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:64 msgid "Select stream:" @@ -3435,11 +3435,11 @@ msgstr "" #: airtime_mvc/application/views/scripts/user/add-user.phtml:19 msgid "First Name" -msgstr "" +msgstr "İsim" #: airtime_mvc/application/views/scripts/user/add-user.phtml:20 msgid "Last Name" -msgstr "" +msgstr "Soyisim" #: airtime_mvc/application/views/scripts/user/add-user.phtml:21 msgid "User Type" @@ -3588,11 +3588,11 @@ msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:29 msgid "Who" -msgstr "" +msgstr "DJ" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:33 msgid "Style" -msgstr "" +msgstr "Stil" #: airtime_mvc/application/models/ShowBuilder.php:212 #, php-format From efad7be91a63d93df8fcaf96d9fe9f59f8002688 Mon Sep 17 00:00:00 2001 From: Albert Santoni Date: Mon, 11 May 2015 11:08:43 -0400 Subject: [PATCH 35/35] CC-5120: Can't add PLS webstreams --- airtime_mvc/application/models/Webstream.php | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/airtime_mvc/application/models/Webstream.php b/airtime_mvc/application/models/Webstream.php index 007e789384..87eee7797f 100644 --- a/airtime_mvc/application/models/Webstream.php +++ b/airtime_mvc/application/models/Webstream.php @@ -93,6 +93,7 @@ public static function deleteStreams($p_ids, $p_userId) $isAdminOrPM = $user->isUserType(array(UTYPE_ADMIN, UTYPE_PROGRAM_MANAGER)); if (!$isAdminOrPM) { + //Make sure the user has ownership of ALL the selected webstreams before $leftOver = self::streamsNotOwnedByUser($p_ids, $p_userId); if (count($leftOver) == 0) { CcWebstreamQuery::create()->findPKs($p_ids)->delete(); @@ -280,13 +281,22 @@ private static function getXspfUrl($url) private static function getPlsUrl($url) { $content = self::getUrlData($url); - $ini = parse_ini_string($content, true); - if ($ini !== false && isset($ini["playlist"]) && isset($ini["playlist"]["File1"])) { - return $ini["playlist"]["File1"]; + $matches = array(); + $numStreams = 0; //Number of streams explicitly listed in the PLS. + + if (preg_match("/NumberOfEntries=([0-9]*)/", $content, $matches) !== FALSE) { + $numStreams = $matches[1]; } - throw new Exception(_("Could not parse PLS playlist")); + //Find all the stream URLs in the playlist + if (preg_match_all("/File[0-9]*=(.*)/", $content, $matches) !== FALSE) { + //This array contains all the streams! If we need fallback stream URLs in the future, + //they're already in this array... + return $matches[1][0]; + } else { + throw new Exception(_("Could not parse PLS playlist")); + } } private static function getM3uUrl($url)