diff --git a/LICENSE_3RD_PARTY b/LICENSE_3RD_PARTY index 0abbe77eb..0309eaf6c 100644 --- a/LICENSE_3RD_PARTY +++ b/LICENSE_3RD_PARTY @@ -52,12 +52,6 @@ Linked code: - License: LGPLv2.1 - Compatible with GPLv3? Yes - * Soundcloud PHP API wrapper - - What is it: PHP library to upload to SoundCloud - - Web site: https://github.com/mptre/php-soundcloud/blob/master/Services/Soundcloud.php - - License: MIT - - Compatible with the GPL: Yes. See http://www.gnu.org/licenses/license-list.html - * getID3() - What is it: PHP script that extracts useful information from MP3s & other multimedia file formats: - Web site: https://github.com/JamesHeinrich/getID3 diff --git a/airtime_mvc/application/common/TaskManager.php b/airtime_mvc/application/common/TaskManager.php index 514d9f45c..e110b2fe4 100644 --- a/airtime_mvc/application/common/TaskManager.php +++ b/airtime_mvc/application/common/TaskManager.php @@ -331,39 +331,6 @@ class StationPodcastTask implements AirtimeTask { } -/** - * TODO: this and the above StationPodcastTask should probably be unified since the - * behaviour is essentially identical - * - * Class BandwidthLimitTask - * - * Checks the bandwidth limit rollover timer and resets the allotted - * limit if enough time has passed (default: 1 month) - */ -class BandwidthLimitTask implements AirtimeTask { - - const BANDWIDTH_LIMIT_RESET_TIMER_SECONDS = 2.628e+6; - - /** - * Check whether the task should be run - * - * @return bool true if the task needs to be run, otherwise false - */ - public function shouldBeRun() { - $lastReset = Application_Model_Preference::getBandwidthLimitResetTimer(); - return empty($lastReset) || (microtime(true) > ($lastReset + self::BANDWIDTH_LIMIT_RESET_TIMER_SECONDS)); - } - - /** - * Run the task - */ - public function run() { - Application_Model_Preference::resetStationPodcastDownloadCounter(); - Application_Model_Preference::setBandwidthLimitResetTimer(microtime(true)); - } - -} - /** * Class TaskFactory Factory class to abstract task instantiation */ diff --git a/airtime_mvc/application/configs/ACL.php b/airtime_mvc/application/configs/ACL.php index 3cebd512b..c53cf7f18 100644 --- a/airtime_mvc/application/configs/ACL.php +++ b/airtime_mvc/application/configs/ACL.php @@ -40,7 +40,6 @@ $ccAcl->add(new Zend_Acl_Resource('library')) ->add(new Zend_Acl_Resource('podcast')) ->add(new Zend_Acl_Resource('player')) ->add(new Zend_Acl_Resource('render')) - ->add(new Zend_Acl_Resource('soundcloud')) ->add(new Zend_Acl_Resource('embeddablewidgets')) ->add(new Zend_Acl_Resource('setup')) ->add(new Zend_Acl_Resource('feeds')); @@ -67,7 +66,6 @@ $ccAcl->allow('G', 'index') ->allow('G', 'setup') ->allow('G', 'embeddablewidgets') ->allow('G', 'feeds') - ->allow('H', 'soundcloud') ->allow('H', 'rest:show-image') ->allow('H', 'rest:media') ->allow('H', 'rest:podcast') diff --git a/airtime_mvc/application/configs/conf.php b/airtime_mvc/application/configs/conf.php index 6295d410e..128a8fe91 100644 --- a/airtime_mvc/application/configs/conf.php +++ b/airtime_mvc/application/configs/conf.php @@ -64,13 +64,7 @@ class Config { $CC_CONFIG['dsn']['database'] = $values['database']['dbname']; $CC_CONFIG['apiKey'] = array($values['general']['api_key']); - - $CC_CONFIG['soundcloud-connection-retries'] = $values['soundcloud']['connection_retries']; - $CC_CONFIG['soundcloud-connection-wait'] = $values['soundcloud']['time_between_retries']; - $CC_CONFIG['soundcloud-client-id'] = $values['soundcloud']['soundcloud_client_id']; - $CC_CONFIG['soundcloud-client-secret'] = $values['soundcloud']['soundcloud_client_secret']; - $CC_CONFIG['soundcloud-redirect-uri'] = $values['soundcloud']['soundcloud_redirect_uri']; if (isset($values['facebook']['facebook_app_id'])) { $CC_CONFIG['facebook-app-id'] = $values['facebook']['facebook_app_id']; $CC_CONFIG['facebook-app-url'] = $values['facebook']['facebook_app_url']; diff --git a/airtime_mvc/application/configs/constants.php b/airtime_mvc/application/configs/constants.php index e9e9a36fa..1857b6e36 100644 --- a/airtime_mvc/application/configs/constants.php +++ b/airtime_mvc/application/configs/constants.php @@ -112,18 +112,12 @@ define('SENTRY_CONFIG_PATH', LIBRETIME_CONF_DIR . '/sentry.airtime_web.ini'); //TuneIn integration define("TUNEIN_API_URL", "http://air.radiotime.com/Playing.ashx"); -// SoundCloud -define('SOUNDCLOUD', 'SoundCloud'); -define('DEFAULT_SOUNDCLOUD_LICENSE_TYPE', 'all-rights-reserved'); -define('DEFAULT_SOUNDCLOUD_SHARING_TYPE', 'public'); - // Celery define('CELERY_PENDING_STATUS', 'PENDING'); define('CELERY_SUCCESS_STATUS', 'SUCCESS'); define('CELERY_FAILED_STATUS', 'FAILED'); // Celery Services -define('SOUNDCLOUD_SERVICE_NAME', 'soundcloud'); define('PODCAST_SERVICE_NAME', 'podcast'); // Publish Services diff --git a/airtime_mvc/application/controllers/EmbedController.php b/airtime_mvc/application/controllers/EmbedController.php index c7684ba45..f228979ac 100644 --- a/airtime_mvc/application/controllers/EmbedController.php +++ b/airtime_mvc/application/controllers/EmbedController.php @@ -26,7 +26,7 @@ class EmbedController extends Zend_Controller_Action $request = $this->getRequest(); $this->view->playerhtml5_js = "/js/airtime/player/playerhtml5.js?".$CC_CONFIG['airtime_version']; - $this->view->jquery = "/js/libs/jquery-1.10.2.js"; + $this->view->jquery = "/js/libs/jquery-1.10.2.min.js"; $this->view->metadata_api_url = "/api/live-info"; $this->view->player_title = json_encode($this->view->escape($request->getParam('title'))); $this->view->jquery_i18n = "/js/i18n/jquery.i18n.js?"; @@ -69,18 +69,6 @@ class EmbedController extends Zend_Controller_Action $this->view->availableDesktopStreams = json_encode($availableDesktopStreams); } - public function currentDayProgramAction() - { - $this->view->layout()->disableLayout(); - - $CC_CONFIG = Config::getConfig(); - - $this->view->css = "/widgets/css/airtime-widgets.css?".$CC_CONFIG['airtime_version']; - $this->view->jquery = "/widgets/js/jquery-1.6.1.min.js?".$CC_CONFIG['airtime_version']; - $this->view->jquery_custom = "/widgets/js/jquery-ui-1.8.10.custom.min.js?".$CC_CONFIG['airtime_version']; - $this->view->widget_js = "/widgets/js/jquery.showinfo.js?".$CC_CONFIG['airtime_version']; - } - public function weeklyProgramAction() { $this->view->layout()->disableLayout(); @@ -98,7 +86,7 @@ class EmbedController extends Zend_Controller_Action $this->view->widgetStyle = "basic"; $this->view->css = "/css/embed/weekly-schedule-widget-basic.css?" . $CC_CONFIG['airtime_version']; } - $this->view->jquery = "/widgets/js/jquery-1.6.1.min.js?".$CC_CONFIG['airtime_version']; + $this->view->jquery = "/js/libs/jquery-1.8.3.min.js?".$CC_CONFIG['airtime_version']; $weeklyScheduleData = WidgetHelper::getWeekInfoV2(); diff --git a/airtime_mvc/application/controllers/LibraryController.php b/airtime_mvc/application/controllers/LibraryController.php index 7b41603f7..302438e47 100644 --- a/airtime_mvc/application/controllers/LibraryController.php +++ b/airtime_mvc/application/controllers/LibraryController.php @@ -119,7 +119,7 @@ class LibraryController extends Zend_Controller_Action if ($isAdminOrPM || $file->getFileOwnerId() == $user->getId()) { $menu["del"] = array("name"=> _("Delete"), "icon" => "delete", "url" => $baseUrl."library/delete"); $menu["edit"] = array("name"=> _("Edit..."), "icon" => "edit", "url" => $baseUrl."library/edit-file-md/id/{$id}"); - $menu["publish"] = array("name"=> _("Publish..."), "icon" => "soundcloud", "url" => $baseUrl."library/publish/id/{$id}"); + $menu["publish"] = array("name"=> _("Publish..."), "url" => $baseUrl."library/publish/id/{$id}"); } // It's important that we always return the parent id (cc_files id) @@ -129,27 +129,6 @@ class LibraryController extends Zend_Controller_Action $url = $baseUrl."api/get-media/file/$id/download/true"; $menu["download"] = array("name" => _("Download"), "icon" => "download", "url" => $url); - // SOUNDCLOUD MENU OPTION - $ownerId = empty($obj) ? $file->getFileOwnerId() : $obj->getCreatorId(); - if ($isAdminOrPM || $ownerId == $user->getId()) { - $soundcloudService = new Application_Service_SoundcloudService(); - if ($type === "audioclip" && $soundcloudService->hasAccessToken()) { - $serviceId = $soundcloudService->getServiceId($id); - if (!is_null($file) && $serviceId != 0) { - $trackRef = ThirdPartyTrackReferencesQuery::create() - ->filterByDbService(SOUNDCLOUD_SERVICE_NAME) - ->findOneByDbFileId($id); - - //create a menu separator - $menu["sep1"] = "-----------"; - - //create a sub menu for Soundcloud actions. - $menu["soundcloud"] = array("name" => _(SOUNDCLOUD), "icon" => "soundcloud", "items" => array()); - $menu["soundcloud"]["items"]["view"] = array("name" => _("View track"), "icon" => "soundcloud", "url" => $baseUrl . "soundcloud/view-on-sound-cloud/id/{$id}"); - $menu["soundcloud"]["items"]["update"] = array("name" => _("Update track"), "icon" => "soundcloud", "url" => $baseUrl . "soundcloud/update/id/{$trackRef->getDbForeignId()}"); - } - } - } } elseif ($type === "playlist" || $type === "block") { if ($type === 'playlist') { $obj = new Application_Model_Playlist($id); diff --git a/airtime_mvc/application/controllers/ListenerstatController.php b/airtime_mvc/application/controllers/ListenerstatController.php index 525faace3..133103f2b 100644 --- a/airtime_mvc/application/controllers/ListenerstatController.php +++ b/airtime_mvc/application/controllers/ListenerstatController.php @@ -72,7 +72,6 @@ class ListenerstatController extends Zend_Controller_Action $this->view->headLink()->appendStylesheet($baseUrl.'css/datatables/css/ColVis.css?'.$CC_CONFIG['airtime_version']); $this->view->headLink()->appendStylesheet($baseUrl.'css/datatables/css/dataTables.colReorder.min.css?'.$CC_CONFIG['airtime_version']); - $this->view->headLink()->appendStylesheet($baseUrl.'js/datatables/plugin/TableTools-2.1.5/css/TableTools.css?'.$CC_CONFIG['airtime_version']); $this->view->headLink()->appendStylesheet($baseUrl.'css/jquery.ui.timepicker.css?'.$CC_CONFIG['airtime_version']); $this->view->headLink()->appendStylesheet($baseUrl.'css/show_analytics.css'.$CC_CONFIG['airtime_version']); diff --git a/airtime_mvc/application/controllers/LocaleController.php b/airtime_mvc/application/controllers/LocaleController.php index cbec559ce..fb726b586 100644 --- a/airtime_mvc/application/controllers/LocaleController.php +++ b/airtime_mvc/application/controllers/LocaleController.php @@ -122,12 +122,6 @@ final class LocaleController extends Zend_Controller_Action "Import" => _("Import"), "Imported?" => _("Imported?"), "View" => _("View"), - // SOUNDCLOUD - "Are you sure? SoundCloud stats and comments for this track will be permanently removed." => "Are you sure? SoundCloud stats and comments for this track will be permanently removed.", - "Your track is being deleted from SoundCloud" => "Your track is being deleted from SoundCloud", - "Your track is being uploaded and will appear on SoundCloud in a couple of minutes" => "Your track is being uploaded and will appear on SoundCloud in a couple of minutes", - "The soundcloud id for this file is: " => _("The soundcloud id for this file is: "), - "There was an error while uploading to soundcloud." => _("There was an error while uploading to soundcloud."), "Error code: " => _("Error code: "), "Error msg: " => _("Error msg: "), "Input must be a positive number" => _("Input must be a positive number"), @@ -229,11 +223,6 @@ final class LocaleController extends Zend_Controller_Action "60m" => _("60m"), "Uploading in progress..." => _("Uploading in progress..."), "Retreiving data from the server..." => _("Retreiving data from the server..."), - //already in library/library.js - //"The soundcloud id for this file is: " => _("The soundcloud id for this file is: "), - //"There was error while uploading to soundcloud." => _("There was error while uploading to soundcloud."), - //"Error code: " => _("Error code: "), - //"Error msg: " => _("Error msg: "), "This show has no scheduled content." => _("This show has no scheduled content."), "This show is not completely filled with content." => _("This show is not completely filled with content."), //already in schedule/add-show.js @@ -436,7 +425,6 @@ final class LocaleController extends Zend_Controller_Action ": activate to sort column ascending", ": activate to sort column descending", //End of datatables - "Welcome to the new Airtime Pro!" => _("Welcome to the new Airtime Pro!"), //New entries from .js "" => _(""), "First" => _("First"), diff --git a/airtime_mvc/application/controllers/PlayouthistoryController.php b/airtime_mvc/application/controllers/PlayouthistoryController.php index 1d55266cb..441f42168 100644 --- a/airtime_mvc/application/controllers/PlayouthistoryController.php +++ b/airtime_mvc/application/controllers/PlayouthistoryController.php @@ -46,17 +46,17 @@ class PlayouthistoryController extends Zend_Controller_Action $this->view->headScript()->appendFile($baseUrl.'js/datatables/js/jquery.dataTables.js?'.$CC_CONFIG['airtime_version'],'text/javascript'); $this->view->headScript()->appendFile($baseUrl.'js/datatables/plugin/dataTables.pluginAPI.js?'.$CC_CONFIG['airtime_version'],'text/javascript'); $this->view->headScript()->appendFile($baseUrl.'js/datatables/plugin/dataTables.fnSetFilteringDelay.js?'.$CC_CONFIG['airtime_version'],'text/javascript'); - $this->view->headScript()->appendFile($baseUrl.'js/datatables/plugin/TableTools-2.1.5/js/ZeroClipboard.js?'.$CC_CONFIG['airtime_version'],'text/javascript'); - $this->view->headScript()->appendFile($baseUrl.'js/datatables/plugin/TableTools-2.1.5/js/TableTools.js?'.$CC_CONFIG['airtime_version'],'text/javascript'); $this->view->headScript()->appendFile($baseUrl.'js/timepicker/jquery.ui.timepicker.js?'.$CC_CONFIG['airtime_version'],'text/javascript'); $this->view->headScript()->appendFile($baseUrl.'js/bootstrap-datetime/bootstrap-datetimepicker.js?'.$CC_CONFIG['airtime_version'],'text/javascript'); $this->view->headScript()->appendFile($baseUrl.'js/airtime/buttons/buttons.js?'.$CC_CONFIG['airtime_version'],'text/javascript'); $this->view->headScript()->appendFile($baseUrl.'js/airtime/utilities/utilities.js?'.$CC_CONFIG['airtime_version'],'text/javascript'); + $this->view->headScript()->appendFile($baseUrl.'js/libs/CSVexport.js?'.$CC_CONFIG['airtime_version'],'text/javascript'); + $this->view->headScript()->appendFile($baseUrl.'js/libs/pdfmake.min.js?'.$CC_CONFIG['airtime_version'],'text/javascript'); + $this->view->headScript()->appendFile($baseUrl.'js/libs/vfs_fonts.min.js?'.$CC_CONFIG['airtime_version'],'text/javascript'); $this->view->headScript()->appendFile($baseUrl.'js/airtime/playouthistory/historytable.js?'.$CC_CONFIG['airtime_version'],'text/javascript'); $this->view->headLink()->appendStylesheet($baseUrl.'css/bootstrap-datetimepicker.min.css?'.$CC_CONFIG['airtime_version']); - $this->view->headLink()->appendStylesheet($baseUrl.'js/datatables/plugin/TableTools-2.1.5/css/TableTools.css?'.$CC_CONFIG['airtime_version']); $this->view->headLink()->appendStylesheet($baseUrl.'css/jquery.ui.timepicker.css?'.$CC_CONFIG['airtime_version']); $this->view->headLink()->appendStylesheet($baseUrl.'css/playouthistory.css?'.$CC_CONFIG['airtime_version']); $this->view->headLink()->appendStylesheet($baseUrl.'css/history_styles.css?'.$CC_CONFIG['airtime_version']); diff --git a/airtime_mvc/application/controllers/PreferenceController.php b/airtime_mvc/application/controllers/PreferenceController.php index 79d97c658..8c7bbd7b7 100644 --- a/airtime_mvc/application/controllers/PreferenceController.php +++ b/airtime_mvc/application/controllers/PreferenceController.php @@ -56,6 +56,7 @@ class PreferenceController extends Zend_Controller_Action Application_Model_Preference::SetDefaultTimezone($values["timezone"]); Application_Model_Preference::SetWeekStartDay($values["weekStartDay"]); Application_Model_Preference::setRadioPageDisplayLoginButton($values["radioPageLoginButton"]); + Application_Model_Preference::SetFeaturePreviewMode($values["featurePreviewMode"]); $logoUploadElement = $form->getSubForm('preferences_general')->getElement('stationLogo'); $logoUploadElement->receive(); @@ -71,12 +72,6 @@ class PreferenceController extends Zend_Controller_Action Application_Model_Preference::setTuneinPartnerKey($values["tunein_partner_key"]); Application_Model_Preference::setTuneinPartnerId($values["tunein_partner_id"]); - // SoundCloud Preferences - if (array_key_exists('SoundCloudLicense', $values)) { - Application_Model_Preference::setDefaultSoundCloudLicenseType($values["SoundCloudLicense"]); - Application_Model_Preference::setDefaultSoundCloudSharingType($values["SoundCloudSharing"]); - } - $this->view->statusMsg = "
- * $query->filterByDbSoundcloudId(1234); // WHERE soundcloud_id = 1234
- * $query->filterByDbSoundcloudId(array(12, 34)); // WHERE soundcloud_id IN (12, 34)
- * $query->filterByDbSoundcloudId(array('min' => 12)); // WHERE soundcloud_id >= 12
- * $query->filterByDbSoundcloudId(array('max' => 12)); // WHERE soundcloud_id <= 12
- *
- *
- * @param mixed $dbSoundcloudId The value to use as filter.
- * Use scalar values for equality.
- * Use array values for in_array() equivalent.
- * Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
- * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
- *
- * @return CcFilesQuery The current query, for fluid interface
- */
- public function filterByDbSoundcloudId($dbSoundcloudId = null, $comparison = null)
- {
- if (is_array($dbSoundcloudId)) {
- $useMinMax = false;
- if (isset($dbSoundcloudId['min'])) {
- $this->addUsingAlias(CcFilesPeer::SOUNDCLOUD_ID, $dbSoundcloudId['min'], Criteria::GREATER_EQUAL);
- $useMinMax = true;
- }
- if (isset($dbSoundcloudId['max'])) {
- $this->addUsingAlias(CcFilesPeer::SOUNDCLOUD_ID, $dbSoundcloudId['max'], Criteria::LESS_EQUAL);
- $useMinMax = true;
- }
- if ($useMinMax) {
- return $this;
- }
- if (null === $comparison) {
- $comparison = Criteria::IN;
- }
- }
-
- return $this->addUsingAlias(CcFilesPeer::SOUNDCLOUD_ID, $dbSoundcloudId, $comparison);
- }
-
- /**
- * Filter the query on the soundcloud_error_code column
- *
- * Example usage:
- *
- * $query->filterByDbSoundcloudErrorCode(1234); // WHERE soundcloud_error_code = 1234
- * $query->filterByDbSoundcloudErrorCode(array(12, 34)); // WHERE soundcloud_error_code IN (12, 34)
- * $query->filterByDbSoundcloudErrorCode(array('min' => 12)); // WHERE soundcloud_error_code >= 12
- * $query->filterByDbSoundcloudErrorCode(array('max' => 12)); // WHERE soundcloud_error_code <= 12
- *
- *
- * @param mixed $dbSoundcloudErrorCode The value to use as filter.
- * Use scalar values for equality.
- * Use array values for in_array() equivalent.
- * Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
- * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
- *
- * @return CcFilesQuery The current query, for fluid interface
- */
- public function filterByDbSoundcloudErrorCode($dbSoundcloudErrorCode = null, $comparison = null)
- {
- if (is_array($dbSoundcloudErrorCode)) {
- $useMinMax = false;
- if (isset($dbSoundcloudErrorCode['min'])) {
- $this->addUsingAlias(CcFilesPeer::SOUNDCLOUD_ERROR_CODE, $dbSoundcloudErrorCode['min'], Criteria::GREATER_EQUAL);
- $useMinMax = true;
- }
- if (isset($dbSoundcloudErrorCode['max'])) {
- $this->addUsingAlias(CcFilesPeer::SOUNDCLOUD_ERROR_CODE, $dbSoundcloudErrorCode['max'], Criteria::LESS_EQUAL);
- $useMinMax = true;
- }
- if ($useMinMax) {
- return $this;
- }
- if (null === $comparison) {
- $comparison = Criteria::IN;
- }
- }
-
- return $this->addUsingAlias(CcFilesPeer::SOUNDCLOUD_ERROR_CODE, $dbSoundcloudErrorCode, $comparison);
- }
-
- /**
- * Filter the query on the soundcloud_error_msg column
- *
- * Example usage:
- *
- * $query->filterByDbSoundcloudErrorMsg('fooValue'); // WHERE soundcloud_error_msg = 'fooValue'
- * $query->filterByDbSoundcloudErrorMsg('%fooValue%'); // WHERE soundcloud_error_msg LIKE '%fooValue%'
- *
- *
- * @param string $dbSoundcloudErrorMsg The value to use as filter.
- * Accepts wildcards (* and % trigger a LIKE)
- * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
- *
- * @return CcFilesQuery The current query, for fluid interface
- */
- public function filterByDbSoundcloudErrorMsg($dbSoundcloudErrorMsg = null, $comparison = null)
- {
- if (null === $comparison) {
- if (is_array($dbSoundcloudErrorMsg)) {
- $comparison = Criteria::IN;
- } elseif (preg_match('/[\%\*]/', $dbSoundcloudErrorMsg)) {
- $dbSoundcloudErrorMsg = str_replace('*', '%', $dbSoundcloudErrorMsg);
- $comparison = Criteria::LIKE;
- }
- }
-
- return $this->addUsingAlias(CcFilesPeer::SOUNDCLOUD_ERROR_MSG, $dbSoundcloudErrorMsg, $comparison);
- }
-
- /**
- * Filter the query on the soundcloud_link_to_file column
- *
- * Example usage:
- *
- * $query->filterByDbSoundcloudLinkToFile('fooValue'); // WHERE soundcloud_link_to_file = 'fooValue'
- * $query->filterByDbSoundcloudLinkToFile('%fooValue%'); // WHERE soundcloud_link_to_file LIKE '%fooValue%'
- *
- *
- * @param string $dbSoundcloudLinkToFile The value to use as filter.
- * Accepts wildcards (* and % trigger a LIKE)
- * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
- *
- * @return CcFilesQuery The current query, for fluid interface
- */
- public function filterByDbSoundcloudLinkToFile($dbSoundcloudLinkToFile = null, $comparison = null)
- {
- if (null === $comparison) {
- if (is_array($dbSoundcloudLinkToFile)) {
- $comparison = Criteria::IN;
- } elseif (preg_match('/[\%\*]/', $dbSoundcloudLinkToFile)) {
- $dbSoundcloudLinkToFile = str_replace('*', '%', $dbSoundcloudLinkToFile);
- $comparison = Criteria::LIKE;
- }
- }
-
- return $this->addUsingAlias(CcFilesPeer::SOUNDCLOUD_LINK_TO_FILE, $dbSoundcloudLinkToFile, $comparison);
- }
-
- /**
- * Filter the query on the soundcloud_upload_time column
- *
- * Example usage:
- *
- * $query->filterByDbSoundCloundUploadTime('2011-03-14'); // WHERE soundcloud_upload_time = '2011-03-14'
- * $query->filterByDbSoundCloundUploadTime('now'); // WHERE soundcloud_upload_time = '2011-03-14'
- * $query->filterByDbSoundCloundUploadTime(array('max' => 'yesterday')); // WHERE soundcloud_upload_time < '2011-03-13'
- *
- *
- * @param mixed $dbSoundCloundUploadTime The value to use as filter.
- * Values can be integers (unix timestamps), DateTime objects, or strings.
- * Empty strings are treated as NULL.
- * Use scalar values for equality.
- * Use array values for in_array() equivalent.
- * Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
- * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
- *
- * @return CcFilesQuery The current query, for fluid interface
- */
- public function filterByDbSoundCloundUploadTime($dbSoundCloundUploadTime = null, $comparison = null)
- {
- if (is_array($dbSoundCloundUploadTime)) {
- $useMinMax = false;
- if (isset($dbSoundCloundUploadTime['min'])) {
- $this->addUsingAlias(CcFilesPeer::SOUNDCLOUD_UPLOAD_TIME, $dbSoundCloundUploadTime['min'], Criteria::GREATER_EQUAL);
- $useMinMax = true;
- }
- if (isset($dbSoundCloundUploadTime['max'])) {
- $this->addUsingAlias(CcFilesPeer::SOUNDCLOUD_UPLOAD_TIME, $dbSoundCloundUploadTime['max'], Criteria::LESS_EQUAL);
- $useMinMax = true;
- }
- if ($useMinMax) {
- return $this;
- }
- if (null === $comparison) {
- $comparison = Criteria::IN;
- }
- }
-
- return $this->addUsingAlias(CcFilesPeer::SOUNDCLOUD_UPLOAD_TIME, $dbSoundCloundUploadTime, $comparison);
- }
-
/**
* Filter the query on the replay_gain column
*
diff --git a/airtime_mvc/application/services/CeleryServiceFactory.php b/airtime_mvc/application/services/CeleryServiceFactory.php
index e92b1ef8c..08952c756 100644
--- a/airtime_mvc/application/services/CeleryServiceFactory.php
+++ b/airtime_mvc/application/services/CeleryServiceFactory.php
@@ -11,8 +11,6 @@ class CeleryServiceFactory {
*/
public static function getService($serviceName) {
switch($serviceName) {
- case SOUNDCLOUD_SERVICE_NAME:
- return new Application_Service_SoundcloudService();
case PODCAST_SERVICE_NAME:
return new Application_Service_PodcastEpisodeService();
default:
diff --git a/airtime_mvc/application/services/MediaService.php b/airtime_mvc/application/services/MediaService.php
index 5ddad86bb..dc6a99a01 100644
--- a/airtime_mvc/application/services/MediaService.php
+++ b/airtime_mvc/application/services/MediaService.php
@@ -33,10 +33,10 @@ class Application_Service_MediaService
}
//Copy the temporary file over to the "organize" folder so that it's off our webserver
- //and accessible by airtime_analyzer which could be running on a different machine.
+ //and accessible by libretime-analyzer which could be running on a different machine.
$newTempFilePath = Application_Model_StoredFile::moveFileToStor($filePath, $originalFilename, $copyFile);
- //Dispatch a message to airtime_analyzer through RabbitMQ,
+ //Dispatch a message to libretime-analyzer through RabbitMQ,
//notifying it that there's a new upload to process!
$storageBackend = new ProxyStorageBackend($CC_CONFIG["current_backend"]);
Application_Model_RabbitMq::SendMessageToAnalyzer($newTempFilePath,
diff --git a/airtime_mvc/application/services/PublishService.php b/airtime_mvc/application/services/PublishService.php
index 345ed1bf8..df4a71483 100644
--- a/airtime_mvc/application/services/PublishService.php
+++ b/airtime_mvc/application/services/PublishService.php
@@ -6,13 +6,12 @@ class Application_Service_PublishService {
* @var array map of arbitrary source names to descriptive labels
*/
private static $SOURCES = array(
- "soundcloud" => SOUNDCLOUD,
"station_podcast" => "My Podcast"
);
/**
* Publish or remove the file with the given file ID from the services
- * specified in the request data (ie. SoundCloud, the station podcast)
+ * specified in the request data (ie. the station podcast)
*
* @param int $fileId ID of the file to be published
* @param array $data request data containing what services to publish to
diff --git a/airtime_mvc/application/services/PublishServiceFactory.php b/airtime_mvc/application/services/PublishServiceFactory.php
index 23ee071f8..2ebb9277a 100644
--- a/airtime_mvc/application/services/PublishServiceFactory.php
+++ b/airtime_mvc/application/services/PublishServiceFactory.php
@@ -11,8 +11,6 @@ class PublishServiceFactory {
*/
public static function getService($serviceName) {
switch($serviceName) {
- case SOUNDCLOUD_SERVICE_NAME:
- return new Application_Service_SoundcloudService();
case STATION_PODCAST_SERVICE_NAME:
return new Application_Service_PodcastEpisodeService();
default:
diff --git a/airtime_mvc/application/services/SoundcloudService.php b/airtime_mvc/application/services/SoundcloudService.php
deleted file mode 100644
index b94e68968..000000000
--- a/airtime_mvc/application/services/SoundcloudService.php
+++ /dev/null
@@ -1,349 +0,0 @@
- 'soundcloud-upload',
- self::UPDATE => 'soundcloud-update',
- self::DOWNLOAD => 'soundcloud-download',
- self::DELETE => 'soundcloud-delete'
- ];
-
- /**
- * @var array Application_Model_Preference functions for SoundCloud and their
- * associated API parameter keys so that we can call them dynamically
- */
- private static $_SOUNDCLOUD_PREF_FUNCTIONS = array(
- "getDefaultSoundCloudLicenseType" => "license",
- "getDefaultSoundCloudSharingType" => "sharing"
- );
-
- /**
- * Initialize the service
- */
- public function __construct() {
- $CC_CONFIG = Config::getConfig();
- $clientId = $CC_CONFIG['soundcloud-client-id'];
- $clientSecret = $CC_CONFIG['soundcloud-client-secret'];
- $redirectUri = $CC_CONFIG['soundcloud-redirect-uri'];
-
- if ($clientId && $clientSecret && $redirectUri) {
- $this->_client = new Soundcloud\Service($clientId, $clientSecret, $redirectUri);
- $accessToken = Application_Model_Preference::getSoundCloudRequestToken();
- }
- if (!empty($accessToken)) {
- $this->_accessToken = $accessToken;
- $this->_client->setAccessToken($accessToken);
- }
- }
-
- /**
- * Build a parameter array for the track being uploaded to SoundCloud
- *
- * @param $file Application_Model_StoredFile the file being uploaded
- *
- * @return array the track array to send to SoundCloud
- */
- protected function _getUploadData($file) {
- $file = $file->getPropelOrm();
- $trackArray = $this->_serializeTrack($file);
- foreach (self::$_SOUNDCLOUD_PREF_FUNCTIONS as $func => $param) {
- $val = Application_Model_Preference::$func();
- if (!empty($val)) {
- $trackArray[$param] = $val;
- }
- }
-
- return $trackArray;
- }
-
- /**
- * Serialize Airtime file data to send to SoundCloud
- *
- * Ignores any null fields, as these will cause the upload to throw a 422
- * Unprocessable Entity error
- *
- * TODO: Move this into a proper serializer
- *
- * @param $file CcFiles file object
- *
- * @return array the serialized data
- */
- protected function _serializeTrack($file) {
- $fileData = array(
- 'title' => $file->getDbTrackTitle(),
- 'genre' => $file->getDbGenre(),
- 'bpm' => $file->getDbBpm(),
- 'release_year' => $file->getDbYear(),
- );
- $trackArray = array();
- foreach ($fileData as $k => $v) {
- if (!empty($v)) {
- $trackArray[$k] = $v;
- }
- }
- return $trackArray;
- }
-
- /**
- * Upload the file with the given identifier to SoundCloud
- *
- * @param int $fileId the local CcFiles identifier
- */
- public function upload($fileId) {
- $file = Application_Model_StoredFile::RecallById($fileId);
- $data = array(
- 'data' => $this->_getUploadData($file),
- 'token' => $this->_accessToken,
- 'file_path' => $file->getFilePaths()[0]
- );
- $this->_executeTask(static::$_CELERY_TASKS[self::UPLOAD], $data, $fileId);
- }
-
- /**
- * Given a track identifier, update a track on SoundCloud
- *
- * @param int $trackId a track identifier
- */
- public function update($trackId) {
- $trackRef = ThirdPartyTrackReferencesQuery::create()
- ->findOneByDbForeignId($trackId);
- $file = Application_Model_StoredFile::RecallById($trackRef->getDbFileId());
- $data = array(
- 'data' => $this->_getUploadData($file),
- 'token' => $this->_accessToken,
- 'track_id' => $trackId
- );
- $this->_executeTask(static::$_CELERY_TASKS[self::UPDATE], $data, $trackRef->getDbFileId());
- }
-
- /**
- * Given a track identifier, download a track from SoundCloud
- *
- * @param int $trackId a track identifier
- */
- public function download($trackId) {
- $CC_CONFIG = Config::getConfig();
- $data = array(
- 'callback_url' => Application_Common_HTTPHelper::getStationUrl() . 'rest/media',
- 'api_key' => $apiKey = $CC_CONFIG["apiKey"][0],
- 'token' => $this->_accessToken,
- 'track_id' => $trackId
- );
- $this->_executeTask(static::$_CELERY_TASKS[self::DOWNLOAD], $data);
- }
-
- /**
- * Delete the file with the given identifier from SoundCloud
- *
- * @param int $fileId the local CcFiles identifier
- *
- * @throws ServiceNotFoundException when a $fileId with no corresponding
- * service identifier is given
- */
- public function delete($fileId) {
- $serviceId = $this->getServiceId($fileId);
- if ($serviceId == 0) {
- throw new ServiceNotFoundException("No service ID found for file with ID $fileId");
- }
- $data = array(
- 'token' => $this->_accessToken,
- 'track_id' => $serviceId
- );
- $this->_executeTask(static::$_CELERY_TASKS[self::DELETE], $data, $fileId);
- }
-
- /**
- * Update a ThirdPartyTrackReferences object for a completed upload
- *
- * TODO: should we have a database layer class to handle Propel operations?
- *
- * @param $task CeleryTasks the completed CeleryTasks object
- * @param $trackId int ThirdPartyTrackReferences identifier
- * @param $track object third-party service track object
- * @param $status string Celery task status
- *
- * @return ThirdPartyTrackReferences the updated ThirdPartyTrackReferences object
- * or null if the task was a DELETE
- *
- * @throws Exception
- * @throws PropelException
- */
- public function updateTrackReference($task, $trackId, $track, $status) {
- $ref = parent::updateTrackReference($task, $trackId, $track, $status);
- // TODO: fetch any additional SoundCloud parameters we want to store
- // Only set the SoundCloud fields if the task was successful
- if ($status == CELERY_SUCCESS_STATUS) {
- // If the task was to delete the file from SoundCloud, remove the reference
- if ($task->getDbName() == static::$_CELERY_TASKS[self::DELETE]) {
- $this->removeTrackReference($ref->getDbFileId());
- return null;
- }
- $ref->setDbForeignId($track->id); // SoundCloud identifier
- if (isset($track->fileid)) {
- $ref->setDbFileId($track->fileid); // For downloads, set the cc_files ID
- }
- }
- // TODO: set SoundCloud upload status?
- // $ref->setDbStatus($status);
- $ref->save();
- return $ref;
- }
-
- /**
- * Given a CcFiles identifier for a file that's been uploaded to SoundCloud,
- * return a link to the remote file
- *
- * @param int $fileId the local CcFiles identifier
- *
- * @return string the link to the remote file
- *
- * @throws Soundcloud\Exception\InvalidHttpResponseCodeException when SoundCloud returns a 4xx/5xx response
- */
- public function getLinkToFile($fileId) {
- $serviceId = $this->getServiceId($fileId);
- // If we don't find a record for the file we'll get 0 back for the id
- if ($serviceId == 0) { return ''; }
- try {
- $track = json_decode($this->_client->get('tracks/' . $serviceId));
- } catch (Soundcloud\Exception\InvalidHttpResponseCodeException $e) {
- // If we end up here it means the track was removed from SoundCloud
- // or the foreign id in our database is incorrect, so we should just
- // get rid of the database record
- Logging::warn("Error retrieving track data from SoundCloud: " . $e->getMessage());
- $this->removeTrackReference($fileId);
- throw $e; // Throw the exception up to the controller so we can redirect to a 404
- }
- return $track->permalink_url;
- }
-
- /**
- * Check whether an access token exists for the SoundCloud client
- *
- * @return bool true if an access token exists, otherwise false
- */
- public function hasAccessToken() {
- return !empty($this->_accessToken);
- }
-
- /**
- * Get the SoundCloud authorization URL
- *
- * @return string the authorization URL
- */
- public function getAuthorizeUrl() {
- // Pass the current URL in the state parameter in order to preserve it
- // in the redirect. This allows us to create a singular script to redirect
- // back to any station the request comes from.
- $url = urlencode(Application_Common_HTTPHelper::getStationUrl() . '/soundcloud/redirect');
- return $this->_client->getAuthorizeUrl(array("state" => $url, "scope" => "non-expiring"));
- }
-
- /**
- * Request a new access token from SoundCloud and store it in CcPref
- *
- * @param $code string exchange authorization code for access token
- */
- public function requestNewAccessToken($code) {
- // Get a non-expiring access token
- $response = $this->_client->accessToken($code);
- $accessToken = $response['access_token'];
- Application_Model_Preference::setSoundCloudRequestToken($accessToken);
- $this->_accessToken = $accessToken;
- }
-
- /**
- * Regenerate the SoundCloud client's access token
- *
- * @throws Soundcloud\Exception\InvalidHttpResponseCodeException
- * thrown when attempting to regenerate a stale token
- */
- public function accessTokenRefresh() {
- assert($this->hasAccessToken());
- try {
- $accessToken = $this->_accessToken;
- $this->_client->accessTokenRefresh($accessToken);
- } catch(Soundcloud\Exception\InvalidHttpResponseCodeException $e) {
- // If we get here, then that means our token is stale, so remove it
- // Because we're using non-expiring tokens, we shouldn't get here (!)
- Application_Model_Preference::setSoundCloudRequestToken("");
- }
- }
-
- /**
- * Publishing interface proxy
- *
- * Publish the file with the given file ID to SoundCloud
- *
- * @param int $fileId ID of the file to be published
- */
- public function publish($fileId) {
- $this->upload($fileId);
- }
-
- /**
- * Publishing interface proxy
- *
- * Unpublish the file with the given file ID from SoundCloud
- *
- * @param int $fileId ID of the file to be unpublished
- *
- * @throws ServiceNotFoundException when a $fileId with no corresponding
- * service identifier is given
- */
- public function unpublish($fileId) {
- $this->delete($fileId);
- }
-
- /**
- * Fetch the publication status for the file with the given ID
- *
- * @param int $fileId the ID of the file to check
- *
- * @return int 1 if the file has been published,
- * 0 if the file has yet to be published,
- * -1 if the file is in a pending state,
- * 2 if the source is unreachable (disconnected)
- */
- public function getPublishStatus($fileId) {
- if (!$this->hasAccessToken()) { return 2; }
- return ($this->referenceExists($fileId));
- }
-}
\ No newline at end of file
diff --git a/airtime_mvc/application/upgrade/Upgrades.php b/airtime_mvc/application/upgrade/Upgrades.php
index 2ab4c8336..547a2226c 100644
--- a/airtime_mvc/application/upgrade/Upgrades.php
+++ b/airtime_mvc/application/upgrade/Upgrades.php
@@ -638,3 +638,16 @@ class AirtimeUpgrader200alpha9_3 extends AirtimeUpgrader
return '3.0.0-alpha.9.3';
}
}
+
+class AirtimeUpgrader200alpha9_4 extends AirtimeUpgrader
+{
+ protected function getSupportedSchemaVersions() {
+ return array(
+ '3.0.0-alpha.9.3'
+ );
+ }
+
+ public function getNewVersion() {
+ return '3.0.0-alpha.9.4';
+ }
+}
\ No newline at end of file
diff --git a/airtime_mvc/application/views/scripts/embed/current-day-program.phtml b/airtime_mvc/application/views/scripts/embed/current-day-program.phtml
deleted file mode 100644
index a4dbd3872..000000000
--- a/airtime_mvc/application/views/scripts/embed/current-day-program.phtml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/airtime_mvc/application/views/scripts/embed/weekly-program.phtml b/airtime_mvc/application/views/scripts/embed/weekly-program.phtml
index 9a4c68289..12b7f7262 100644
--- a/airtime_mvc/application/views/scripts/embed/weekly-program.phtml
+++ b/airtime_mvc/application/views/scripts/embed/weekly-program.phtml
@@ -2,103 +2,103 @@
-
-
+
-
-If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:493 +msgid "On Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:494 +msgid "Off Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:495 +msgid "Offline" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:179 -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:183 -msgid "That username or email address could not be found." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" +#: airtime_mvc/application/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" msgstr "" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" +#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 #, php-format -msgid "Use %s Authentication:" +msgid "The value should be less than %s characters" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -msgid "days" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" msgstr "" #: airtime_mvc/application/forms/AddShowRepeats.php:10 @@ -2632,8 +3877,9 @@ msgid "day of the week" msgstr "" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "" @@ -2649,77 +3895,9 @@ msgstr "" msgid "Please select a repeat day" 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/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -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:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" msgstr "" #: airtime_mvc/application/forms/AddShowWhen.php:16 @@ -2730,6 +3908,7 @@ msgstr "" msgid "Start Time:" msgstr "" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "" @@ -2738,12 +3917,6 @@ msgstr "" msgid "End Time:" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "" @@ -2761,7 +3934,7 @@ msgid "Cannot modify start date/time of the show that is already started" msgstr "" #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "" @@ -2777,32 +3950,17 @@ msgstr "" msgid "Cannot have duration greater than 24h" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -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/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "" #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "" @@ -2823,8 +3981,6 @@ msgstr "" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "" @@ -2848,112 +4004,159 @@ msgid "User Type:" msgstr "" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "" -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" msgstr "" -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" msgstr "" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 +msgid "Day must be specified" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 +msgid "Time must be specified" msgstr "" -#: airtime_mvc/application/forms/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" +#: 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/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" msgstr "" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "" @@ -2962,12 +4165,10 @@ msgid "Station Description" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "" @@ -2990,93 +4191,82 @@ msgstr "" msgid "Default Fade Out (s):" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:120 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:111 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgid "Intro Autoloading Playlist" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public LibreTime API" +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 -msgid "Required for embeddable schedule widget." +msgid "Overwrite Podcast Episode Metatags" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" 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" +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" msgstr "" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 @@ -3121,16 +4311,6 @@ msgstr "" msgid "Show Source Mount:" msgstr "" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "" - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3144,24 +4324,96 @@ msgstr "" msgid "Password confirmation does not match your password." msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "" + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" msgstr "" #: airtime_mvc/application/forms/Player.php:14 @@ -3188,279 +4440,53 @@ msgstr "" msgid " - The player does not support Opus streams." msgstr "" -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - #: airtime_mvc/application/forms/Player.php:72 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -msgid "Preview:" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" +#: 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/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "" - -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "" - -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -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:597 -msgid "The value has to be numeric" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -msgid "Default License:" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -msgid "The work is in the public domain" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -msgid "Creative Commons Attribution" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -msgid "Creative Commons Attribution Noncommercial" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -msgid "Creative Commons Attribution Share Alike" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" msgstr "" #: airtime_mvc/application/forms/StreamSetting.php:26 @@ -3539,379 +4565,636 @@ msgstr "" msgid "Custom / 3rd Party Streaming" msgstr "" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -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/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -msgid "Set Cue In" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -msgid "Set Cue Out" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read on to find out more." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -" is easier than ever." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -" just a click away, you'll be on air and hands-free in no time." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "" - -#: 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/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/DateHelper.php:213 #, php-format -msgid "%1$s copyright © %2$s All rights reserved.If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:493 +msgid "On Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:494 +msgid "Off Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:495 +msgid "Offline" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:179 -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:183 -msgid "That username or email address could not be found." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" +#: airtime_mvc/application/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" msgstr "" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" +#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 #, php-format -msgid "Use %s Authentication:" +msgid "The value should be less than %s characters" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -msgid "days" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" msgstr "" #: airtime_mvc/application/forms/AddShowRepeats.php:10 @@ -2632,8 +3877,9 @@ msgid "day of the week" msgstr "" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "" @@ -2649,77 +3895,9 @@ msgstr "" msgid "Please select a repeat day" 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/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -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:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" msgstr "" #: airtime_mvc/application/forms/AddShowWhen.php:16 @@ -2730,6 +3908,7 @@ msgstr "" msgid "Start Time:" msgstr "" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "" @@ -2738,12 +3917,6 @@ msgstr "" msgid "End Time:" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "" @@ -2761,7 +3934,7 @@ msgid "Cannot modify start date/time of the show that is already started" msgstr "" #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "" @@ -2777,32 +3950,17 @@ msgstr "" msgid "Cannot have duration greater than 24h" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -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/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "" #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "" @@ -2823,8 +3981,6 @@ msgstr "" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "" @@ -2848,112 +4004,159 @@ msgid "User Type:" msgstr "" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "" -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" msgstr "" -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" msgstr "" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 +msgid "Day must be specified" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 +msgid "Time must be specified" msgstr "" -#: airtime_mvc/application/forms/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" +#: 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/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" msgstr "" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "" @@ -2962,12 +4165,10 @@ msgid "Station Description" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "" @@ -2990,93 +4191,82 @@ msgstr "" msgid "Default Fade Out (s):" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:120 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:111 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgid "Intro Autoloading Playlist" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public LibreTime API" +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 -msgid "Required for embeddable schedule widget." +msgid "Overwrite Podcast Episode Metatags" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" 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" +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" msgstr "" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 @@ -3121,16 +4311,6 @@ msgstr "" msgid "Show Source Mount:" msgstr "" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "" - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3144,24 +4324,96 @@ msgstr "" msgid "Password confirmation does not match your password." msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "" + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" msgstr "" #: airtime_mvc/application/forms/Player.php:14 @@ -3188,279 +4440,53 @@ msgstr "" msgid " - The player does not support Opus streams." msgstr "" -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - #: airtime_mvc/application/forms/Player.php:72 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -msgid "Preview:" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" +#: 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/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "" - -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "" - -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -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:597 -msgid "The value has to be numeric" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -msgid "Default License:" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -msgid "The work is in the public domain" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -msgid "Creative Commons Attribution" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -msgid "Creative Commons Attribution Noncommercial" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -msgid "Creative Commons Attribution Share Alike" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" msgstr "" #: airtime_mvc/application/forms/StreamSetting.php:26 @@ -3539,379 +4565,636 @@ msgstr "" msgid "Custom / 3rd Party Streaming" msgstr "" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -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/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -msgid "Set Cue In" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -msgid "Set Cue Out" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read on to find out more." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -" is easier than ever." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -" just a click away, you'll be on air and hands-free in no time." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "" - -#: 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/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/DateHelper.php:213 #, php-format -msgid "%1$s copyright © %2$s All rights reserved.If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:493 +msgid "On Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:494 +msgid "Off Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:495 +msgid "Offline" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:179 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "E-mail se nepodařilo odeslat. Zkontrolujte nastavení poštovního serveru a ujistěte se, že byl správně nakonfigurován." - -#: airtime_mvc/application/controllers/LoginController.php:183 -msgid "That username or email address could not be found." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "Zadali jste chybně uživatelské jméno nebo heslo. Prosím, zkuste zadat znovu." - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "Prohlížíte si starší verzi %s" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Nemůžete přidávat skladby do dynamických bloků." - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Nemáte oprávnění odstranit vybrané %s (s)." - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "Můžete pouze přidat skladby do chytrého bloku." - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "Playlist bez názvu" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "Chytrý block bez názvu" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "Neznámý Playlist" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "Preference aktualizovány." - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "Podpora nastavení aktualizována." - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "Technická podpora" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "Nastavení streamu aktualizováno." - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "cesta by měla být specifikována" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "Problém s Liquidsoap ..." - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "Znovu spustit vysílaní %s od %s na %s" -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" -msgstr "Vybrat kurzor" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" +msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" -msgstr "Odstranit kurzor" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" +msgstr "Soubor s nahrávkou neexistuje" -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" -msgstr "vysílání neexistuje" +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" +msgstr "Zobrazit nahraný soubor metadat" -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "Uživatel byl úspěšně přidán!" +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "" -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "Uživatel byl úspěšně aktualizován!" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "" -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "Nastavení úspěšně aktualizováno!" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" +msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Webstream bez názvu" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" +msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Webstream uložen." +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" +msgstr "Upravit vysílání" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Neplatná forma hodnot." +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Zadán neplatný znak " +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Den musí být zadán" +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" +msgstr "Přístup odepřen" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "Čas musí být zadán" +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" +msgstr "Nelze přetáhnout opakujícící se vysílání" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Musíte počkat alespoň 1 hodinu před dalším vysíláním" +#: airtime_mvc/application/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "Nelze přesunout vysílání z minulosti" + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "Nelze přesunout vysílání do minulosti" + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "Nelze nastavit překrývající se vysílání." + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Nelze přesunout nahrané vysílání méně než 1 hodinu před tím, než bude znovu vysíláno." + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Vysílání bylo vymazáno, protože nahrané vysílání neexistuje!" + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Musíte počkat 1 hodinu před dalším vysíláním." + +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "Stopa" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "Čas začátku" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "Čas konce" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" +msgstr "Přehráno" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" +#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr "Vyberte kritéria" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "Kvalita (Kbps)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "Vzorkovací frekvence (kHz)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "hodiny" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "minuty" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "položka" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "Dynamický" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "Statický" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "Generovat obsah playlistu a uložit kritéria" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "Promíchat obsah playlistu" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Limit nemůže být prázdný nebo menší než 0" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "Limit nemůže být větší než 24 hodin" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "Hodnota by měla být celé číslo" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "500 je max hodnota položky, kterou lze nastavit" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "Musíte vybrat kritéria a modifikátor" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "'Délka' by měla být ve formátu '00:00:00'" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Hodnota by měla být v časový formát (např. 0000-00-00 nebo 0000-00-00 00:00:00)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "Hodnota musí být číslo" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "Hodnota by měla být menší než 2147483648" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 #, php-format -msgid "Use %s Authentication:" -msgstr "Použij %s ověření pravosti:" +msgid "The value should be less than %s characters" +msgstr "Hodnota by měla mít méně znaků než %s" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "Použít ověření uživatele:" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" +msgstr "Hodnota nemůže být prázdná" -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "Uživatelské jméno" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Uživatelské heslo" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "ISRC číslo:" + +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "Uživatelské jméno musí být zadáno." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" +msgstr "Importovaná složka:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "Heslo musí být zadáno." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" +msgstr "Sledované složky:" -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -msgid "days" -msgstr "dny" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" +msgstr "Neplatný adresář" #: airtime_mvc/application/forms/AddShowRepeats.php:10 msgid "Link:" @@ -2636,8 +3882,9 @@ msgid "day of the week" msgstr "den v týdnu" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "Datum ukončení:" @@ -2653,78 +3900,10 @@ msgstr "Datum ukončení musí být po počátečním datumu" msgid "Please select a repeat day" msgstr "Prosím vyberte den opakování" -#: airtime_mvc/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Nahráno z Line In?" - -#: airtime_mvc/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Vysílat znovu?" - -#: airtime_mvc/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "Barva pozadí:" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "Barva textu:" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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 "Odstranit" - -#: airtime_mvc/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -msgid "Name:" -msgstr "Název:" - -#: airtime_mvc/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Pořad bez názvu" - -#: airtime_mvc/application/forms/AddShowWhat.php:36 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "URL:" -msgstr "URL" - -#: airtime_mvc/application/forms/AddShowWhat.php:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "Žánr:" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "Popis:" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" +msgstr "Hodnota je požadována a nemůže zůstat prázdná" #: airtime_mvc/application/forms/AddShowWhen.php:16 msgid "'%value%' does not fit the time format 'HH:mm'" @@ -2734,6 +3913,7 @@ msgstr "'%hodnota%' nesedí formát času 'HH:mm'" msgid "Start Time:" msgstr "" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "" @@ -2742,12 +3922,6 @@ msgstr "" msgid "End Time:" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "Doba trvání:" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "Časová zó" @@ -2765,7 +3939,7 @@ msgid "Cannot modify start date/time of the show that is already started" msgstr "Nelze měnit datum/čas vysílání, které bylo již spuštěno" #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "Datum/čas ukončení nemůže být v minulosti" @@ -2781,32 +3955,17 @@ msgstr "Nelze nastavit dobu trvání 00h 00m" msgid "Cannot have duration greater than 24h" msgstr "Nelze mít dobu trvání delší než 24 hodin" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -msgstr "Nelze nastavit překrývající se vysílání." - -#: airtime_mvc/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Hledat uživatele:" - -#: airtime_mvc/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "DJs:" - #: airtime_mvc/application/forms/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "Uživatelské jméno:" #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "Heslo:" @@ -2827,8 +3986,6 @@ msgstr "Příjmení:" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "E-mail:" @@ -2852,112 +4009,159 @@ msgid "User Type:" msgstr "Typ uživatele:" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "Přihlašovací jméno není jedinečné." -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Hodnota je požadována a nemůže zůstat prázdná" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" +msgstr "Použij %s ověření pravosti:" -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" +msgstr "Použít ověření uživatele:" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "Uživatelské jméno" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Uživatelské heslo" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" msgstr "" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "Uživatelské jméno musí být zadáno." + +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "Heslo musí být zadáno." + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "Časové pásmo stanice" + +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "Datum zahájení:" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" -msgstr "Název:" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" +msgstr "Zadán neplatný znak " -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" -msgstr "Tvůrce:" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" +msgstr "Hledat uživatele:" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" -msgstr "Album:" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" +msgstr "DJs:" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" -msgstr "Rok:" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" -msgstr "Označení:" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" +msgstr "Všechna má vysílání:" -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" -msgstr "Skladatel:" +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" -msgstr "Dirigent:" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" +msgstr "Barva pozadí:" -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" -msgstr "Nálada:" +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" +msgstr "Barva textu:" -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" -msgstr "BPM:" +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" -msgstr "Autorská práva:" +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" -msgstr "ISRC číslo:" +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" -msgstr "Internetová stránka:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 +msgid "Day must be specified" +msgstr "Den musí být zadán" -#: airtime_mvc/application/forms/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" -msgstr "Jazyk:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 +msgid "Time must be specified" +msgstr "Čas musí být zadán" -#: airtime_mvc/application/forms/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" -msgstr "Čas začátku" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Musíte počkat alespoň 1 hodinu před dalším vysíláním" -#: airtime_mvc/application/forms/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" -msgstr "Čas konce" +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Pořad bez názvu" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Časové pásmo uživatelského rozhraní" +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "Název stanice" @@ -2966,12 +4170,10 @@ msgid "Station Description" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "Logo stanice:" #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "Poznámka: Cokoli většího než 600x600 bude zmenšeno." @@ -2994,94 +4196,83 @@ msgstr "Přednastavení Fade In:" msgid "Default Fade Out (s):" msgstr "Přednastavení Fade Out:" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 -msgid "Overwrite Podcast Episode Metatags" +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:120 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "Vypnuto" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" -msgstr "Povoleno" - #: airtime_mvc/application/forms/GeneralPreferences.php:111 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgid "Intro Autoloading Playlist" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public LibreTime API" +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 -msgid "Required for embeddable schedule widget." +msgid "Overwrite Podcast Episode Metatags" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "Časové pásmo stanice" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "Týden začíná" -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%hodnota%' není platná e-mailová adresa v základním formátu local-part@hostname" +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" +msgstr "Nahráno z Line In?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%hodnota%' neodpovídá formátu datumu '%formátu%'" +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" +msgstr "Vysílat znovu?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%hodnota%' je kratší než požadovaných %min% znaků" +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" +msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%hodnota%' je více než %max% znaků dlouhá" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%hodnota%' není mezi '%min%' a '%max%', včetně" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "Hesla se neshodují" +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" +msgstr "Obnovit heslo" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 msgid "Auto Switch Off:" @@ -3125,16 +4316,6 @@ msgstr "" msgid "Show Source Mount:" msgstr "" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "Přihlásit" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "Opište znaky, které vidíte na obrázku níže." - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3148,26 +4329,98 @@ msgstr "Potvrďte nové heslo" msgid "Password confirmation does not match your password." msgstr "Potvrzené heslo neodpovídá vašemu heslu." -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" -msgstr "Uživatelské jméno" - -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Obnovit heslo" - -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" msgstr "" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "dny" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Povoleno:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "Typ streamu:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "Typ služby:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "Kanály:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "1 - Mono" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "2 - Stereo" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "Server" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "Port" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "URL" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "Přípojný bod" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "Administrátorské jméno" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "Administrátorské heslo" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "Server nemůže být prázdný." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "Port nemůže být prázdný." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "Mount nemůže být prázdný s Icecast serverem." + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "Časové pásmo uživatelského rozhraní" + #: airtime_mvc/application/forms/Player.php:14 msgid "Now Playing" msgstr "Právě se přehrává" @@ -3192,280 +4445,54 @@ msgstr "" msgid " - The player does not support Opus streams." msgstr "" -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - #: airtime_mvc/application/forms/Player.php:72 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -msgid "Preview:" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" -msgstr "Telefon:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" -msgstr "Webová stránka stanice:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" -msgstr "Stát:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" -msgstr "Město:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" -msgstr "Popis stanice:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" -msgstr "Podpořit mou stanici na %s" - -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "Zaškrtnutí tohoto okénka souhlasím s %s's %spravidly ochrany osobních údajů%s." - -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "Musíte souhlasit se zásadami ochrany osobních údajů." - -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%hodnota%' není platná e-mailová adresa v základním formátu local-part@hostname" -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "Všechna má vysílání:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%hodnota%' neodpovídá formátu datumu '%formátu%'" -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" +msgstr "'%hodnota%' je kratší než požadovaných %min% znaků" -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr "Vyberte kritéria" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" +msgstr "'%hodnota%' je více než %max% znaků dlouhá" -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "Kvalita (Kbps)" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%hodnota%' není mezi '%min%' a '%max%', včetně" -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "Popis" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "Vzorkovací frekvence (kHz)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "hodiny" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "minuty" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "položka" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "Statický" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "Dynamický" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "Generovat obsah playlistu a uložit kritéria" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "Generovat" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "Promíchat obsah playlistu" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "Promíchat" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Limit nemůže být prázdný nebo menší než 0" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "Limit nemůže být větší než 24 hodin" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "Hodnota by měla být celé číslo" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "500 je max hodnota položky, kterou lze nastavit" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "Musíte vybrat kritéria a modifikátor" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "'Délka' by měla být ve formátu '00:00:00'" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Hodnota by měla být v časový formát (např. 0000-00-00 nebo 0000-00-00 00:00:00)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:597 -msgid "The value has to be numeric" -msgstr "Hodnota musí být číslo" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "Hodnota by měla být menší než 2147483648" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Hodnota by měla mít méně znaků než %s" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "Hodnota nemůže být prázdná" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -msgid "Default License:" -msgstr "Výchozí licence:" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "Všechna práva jsou vyhrazena" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -msgid "The work is in the public domain" -msgstr "Práce je ve veřejné doméně" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -msgid "Creative Commons Attribution" -msgstr "Creative Commons označení" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -msgid "Creative Commons Attribution Noncommercial" -msgstr "Creative Commons nekomerční" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "Creative Commons Nezasahujte do díla" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -msgid "Creative Commons Attribution Share Alike" -msgstr "Creative Commons Zachovejte licenci" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "Creative Commons nekomerční Nezasahujte do díla" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "Creative Commons nekomerční Zachovejte licenci" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" +msgstr "Hesla se neshodují" #: airtime_mvc/application/forms/StreamSetting.php:26 msgid "Hardware Audio Output:" @@ -3543,381 +4570,636 @@ msgstr "" msgid "Custom / 3rd Party Streaming" msgstr "" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Povoleno:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Typ streamu:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "Bit frekvence:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Typ služby:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Kanály:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Mono" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Stereo" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Server" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Port" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "Jméno" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Přípojný bod" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Administrátorské jméno" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Administrátorské heslo" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Server nemůže být prázdný." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "Port nemůže být prázdný." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Mount nemůže být prázdný s Icecast serverem." - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "Importovaná složka:" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "Sledované složky:" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "Neplatný adresář" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "Přehrát" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "Zastavit" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -msgid "Set Cue In" -msgstr "Nastavit Cue In" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -msgid "Set Cue Out" -msgstr "Nstavit Cue Out" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "Kurzor" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read on to find out more." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -" is easier than ever." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -" just a click away, you'll be on air and hands-free in no time." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/livestream.phtml:9 -#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2 -msgid "Live stream" -msgstr "Live stream" - -#: airtime_mvc/application/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/DateHelper.php:213 #, php-format -msgid "%1$s copyright © %2$s All rights reserved.If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:493 +msgid "On Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:494 +msgid "Off Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:495 +msgid "Offline" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:179 -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:183 -msgid "That username or email address could not be found." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" +#: airtime_mvc/application/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" msgstr "" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" +#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 #, php-format -msgid "Use %s Authentication:" +msgid "The value should be less than %s characters" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -msgid "days" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" msgstr "" #: airtime_mvc/application/forms/AddShowRepeats.php:10 @@ -2632,8 +3877,9 @@ msgid "day of the week" msgstr "" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "" @@ -2649,77 +3895,9 @@ msgstr "" msgid "Please select a repeat day" 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/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -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:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" msgstr "" #: airtime_mvc/application/forms/AddShowWhen.php:16 @@ -2730,6 +3908,7 @@ msgstr "" msgid "Start Time:" msgstr "" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "" @@ -2738,12 +3917,6 @@ msgstr "" msgid "End Time:" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "" @@ -2761,7 +3934,7 @@ msgid "Cannot modify start date/time of the show that is already started" msgstr "" #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "" @@ -2777,32 +3950,17 @@ msgstr "" msgid "Cannot have duration greater than 24h" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -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/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "" #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "" @@ -2823,8 +3981,6 @@ msgstr "" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "" @@ -2848,112 +4004,159 @@ msgid "User Type:" msgstr "" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "" -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" msgstr "" -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" msgstr "" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 +msgid "Day must be specified" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 +msgid "Time must be specified" msgstr "" -#: airtime_mvc/application/forms/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" +#: 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/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" msgstr "" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "" @@ -2962,12 +4165,10 @@ msgid "Station Description" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "" @@ -2990,93 +4191,82 @@ msgstr "" msgid "Default Fade Out (s):" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:120 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:111 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgid "Intro Autoloading Playlist" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public LibreTime API" +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 -msgid "Required for embeddable schedule widget." +msgid "Overwrite Podcast Episode Metatags" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" 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" +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" msgstr "" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 @@ -3121,16 +4311,6 @@ msgstr "" msgid "Show Source Mount:" msgstr "" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "" - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3144,24 +4324,96 @@ msgstr "" msgid "Password confirmation does not match your password." msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "" + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" msgstr "" #: airtime_mvc/application/forms/Player.php:14 @@ -3188,279 +4440,53 @@ msgstr "" msgid " - The player does not support Opus streams." msgstr "" -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - #: airtime_mvc/application/forms/Player.php:72 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -msgid "Preview:" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" +#: 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/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "" - -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "" - -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -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:597 -msgid "The value has to be numeric" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -msgid "Default License:" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -msgid "The work is in the public domain" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -msgid "Creative Commons Attribution" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -msgid "Creative Commons Attribution Noncommercial" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -msgid "Creative Commons Attribution Share Alike" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" msgstr "" #: airtime_mvc/application/forms/StreamSetting.php:26 @@ -3539,379 +4565,636 @@ msgstr "" msgid "Custom / 3rd Party Streaming" msgstr "" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -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/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -msgid "Set Cue In" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -msgid "Set Cue Out" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read on to find out more." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -" is easier than ever." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -" just a click away, you'll be on air and hands-free in no time." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "" - -#: 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/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/DateHelper.php:213 #, php-format -msgid "%1$s copyright © %2$s All rights reserved.If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:493 +msgid "On Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:494 +msgid "Off Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:495 +msgid "Offline" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:179 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "E-Mail konnte nicht gesendet werden. Überprüfen sie die Einstellungen des Mail-Servers und versichern sie sich, daß dieser richtig konfiguriert ist." - -#: airtime_mvc/application/controllers/LoginController.php:183 -msgid "That username or email address could not be found." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "Falscher Benutzername oder falsches Passwort eingegeben. Bitte versuchen sie es erneut." - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "Sie betrachten eine ältere Version von %s" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Sie können einem Dynamischen Smart Block keine einzelnen Titel hinzufügen." - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Sie haben zum Löschen der gewählten %s (s) nicht die erforderliche Berechtigung. " - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "Sie können einem Smart Block nur Titel hinzufügen." - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "Unbenannte Playlist" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "Unbenannter Smart Block" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "Unbenannte Playlist" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "Einstellungen aktualisiert" - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "Support-Einstellungen aktualisiert." - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "Support Feedback" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "Stream-Einstellungen aktualisiert." - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "Pfad muß angegeben werden" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "Problem mit Liquidsoap..." - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "Wiederholung der Sendung % s vom %s um %s" -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" -msgstr "Cursor wählen" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" +msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" -msgstr "Cursor entfernen" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" +msgstr "Aufeichnung existiert nicht" -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" -msgstr "Sendung existiert nicht." +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" +msgstr "Metadaten der aufgezeichneten Datei ansehen" -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "Benutzer erfolgreich hinzugefügt!" +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "" -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "Benutzer erfolgreich aktualisiert!" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "" -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "Einstellungen erfolgreich aktualisiert!" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" +msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Unbenannter Webstream" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" +msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Webstream gespeichert" +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" +msgstr "Sendung bearbeiten" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Ungültiger Eingabewert" +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Ungültiges Zeichen eingeben" +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Tag muß angegeben werden" +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" +msgstr "Zugriff verweigert" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "Zeit muß angegeben werden" +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" +msgstr "Wiederkehrende Sendungen können nicht per Drag'n'Drop verschoben werden." -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" +#: airtime_mvc/application/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "Eine in der Vergangenheit liegende Sendung kann nicht verschoben werden." + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "Eine Sendung kann nicht in die Vergangenheit verschoben werden." + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "Sendungen können nicht überlappend geplant werden." + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Eine aufgezeichnete Sendung kann nicht verschoben werden, wenn der Zeitpunkt der Wiederholung weniger als eine Stunde bevor liegt." + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Die Sendung wurde gelöscht, weil die aufgezeichnete Sendung nicht existiert." + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." msgstr "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich." +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "Titel" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "Beginn" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "Ende" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" +msgstr "Abgespielt" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" +#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr "Kriterien wählen" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "Bitrate (Kbps)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "Sample Rate (KHz)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "Stunden" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "Minuten" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "Objekte" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "Dynamisch" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "Statisch" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "Playlist-Inhalt erstellen und Kriterien speichern" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "Shuffle Playlist-Inhalt (Durchmischen)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Beschränkung kann nicht leer oder kleiner als 0 sein." + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "Beschränkung kann nicht größer als 24 Stunden sein" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "Der Wert muß eine ganze Zahl sein." + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "Die Anzahl der Objekte ist auf 500 beschränkt." + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "Sie müssen Kriterium und Modifikator bestimmen" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "Die 'Dauer' muß im Format '00:00:00' eingegeben werden" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Der Wert muß im Timestamp-Format eingegeben werden (zB. 0000-00-00 oder 0000-00-00 00:00:00)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "Der eingegebene Wert muß aus Ziffern bestehen" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "Der eingegebene Wert muß kleiner sein als 2147483648" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 #, php-format -msgid "Use %s Authentication:" +msgid "The value should be less than %s characters" +msgstr "Der eingegebene Wert muß aus weniger als %s Zeichen bestehen." + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" +msgstr "Wert kann nicht leer sein" + +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "Benutzerdefinierte Authentifizierung:" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "Benutzerdefinierter Benutzername" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Benutzerdefiniertes Passwort" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "ISRC Nummer:" + +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" +msgstr "Import Verzeichnis:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "Das Feld Benutzername darf nicht leer sein." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" +msgstr "Überwachte Verzeichnisse:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "Das Feld Passwort darf nicht leer sein." - -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -msgid "days" -msgstr "Tage" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" +msgstr "Kein gültiges Verzeichnis" #: airtime_mvc/application/forms/AddShowRepeats.php:10 msgid "Link:" @@ -2649,8 +3890,9 @@ msgid "day of the week" msgstr "Tag der Woche" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "Zeitpunkt Ende:" @@ -2666,78 +3908,10 @@ msgstr "Enddatum muß nach Startdatum liegen." msgid "Please select a repeat day" msgstr "Bitte Tag zum Wiederholen wählen" -#: airtime_mvc/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Aufzeichnen von Line-In?" - -#: airtime_mvc/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Wiederholen?" - -#: airtime_mvc/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "Hintergrundfarbe:" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "Textfarbe:" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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 "Entfernen" - -#: airtime_mvc/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -msgid "Name:" -msgstr "Name:" - -#: airtime_mvc/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Unbenannte Sendung" - -#: airtime_mvc/application/forms/AddShowWhat.php:36 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "URL:" -msgstr "URL:" - -#: airtime_mvc/application/forms/AddShowWhat.php:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "Genre:" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "Beschreibung:" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" +msgstr "Wert erforderlich. Feld darf nicht leer sein." #: airtime_mvc/application/forms/AddShowWhen.php:16 msgid "'%value%' does not fit the time format 'HH:mm'" @@ -2747,6 +3921,7 @@ msgstr "'%value%' ist nicht im Format 'HH:mm'" msgid "Start Time:" msgstr "" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "" @@ -2755,12 +3930,6 @@ msgstr "" msgid "End Time:" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "Dauer:" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "Zeitzone:" @@ -2778,7 +3947,7 @@ msgid "Cannot modify start date/time of the show that is already started" msgstr "Beginn- & Endzeit einer bereits laufenden Sendung können nicht geändert werden" #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "Enddatum / Endzeit darf nicht in der Vergangheit liegen." @@ -2794,32 +3963,17 @@ msgstr "Die Dauer einer Sendung kann nicht 00h 00m sein" msgid "Cannot have duration greater than 24h" msgstr "Die Dauer einer Sendung kann nicht länger als 24h sein" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -msgstr "Sendungen können nicht überlappend geplant werden." - -#: airtime_mvc/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Benutzer suchen:" - -#: airtime_mvc/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "DJs:" - #: airtime_mvc/application/forms/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "Benutzername:" #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "Passwort:" @@ -2840,8 +3994,6 @@ msgstr "Nachname:" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "E-Mail:" @@ -2865,112 +4017,159 @@ msgid "User Type:" msgstr "Benutzertyp:" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "Benutzername ist nicht einmalig." -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Wert erforderlich. Feld darf nicht leer sein." - -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" msgstr "" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" +msgstr "Benutzerdefinierte Authentifizierung:" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "Benutzerdefinierter Benutzername" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Benutzerdefiniertes Passwort" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "Das Feld Benutzername darf nicht leer sein." + +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "Das Feld Passwort darf nicht leer sein." + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "Zeitzone Radiostation" + +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "Zeitpunkt Start:" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" -msgstr "Titel" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" +msgstr "Ungültiges Zeichen eingeben" -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" -msgstr "Interpret:" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" +msgstr "Benutzer suchen:" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" -msgstr "Album:" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" +msgstr "DJs:" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" -msgstr "Jahr:" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" -msgstr "Label:" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" +msgstr "Alle meine Sendungen:" -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" -msgstr "Komponist:" +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" -msgstr "Dirigent:" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" +msgstr "Hintergrundfarbe:" -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" -msgstr "Stimmung:" +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" +msgstr "Textfarbe:" -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" -msgstr "BPM:" +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" -msgstr "Copyright:" +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" -msgstr "ISRC Nummer:" +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" -msgstr "Webseite:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 +msgid "Day must be specified" +msgstr "Tag muß angegeben werden" -#: airtime_mvc/application/forms/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" -msgstr "Sprache:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 +msgid "Time must be specified" +msgstr "Zeit muß angegeben werden" -#: airtime_mvc/application/forms/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" -msgstr "Beginn" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich." -#: airtime_mvc/application/forms/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" -msgstr "Ende" +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Unbenannte Sendung" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Zeitzone Interface" +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "Sendername" @@ -2979,12 +4178,10 @@ msgid "Station Description" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "Sender Logo:" #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "Erinnerung: Sind Dateien größer als 600x600 Pixel, wird die Größe geändert." @@ -3007,94 +4204,83 @@ msgstr "Standard Fade In (s):" msgid "Default Fade Out (s):" msgstr "Standard Fade Out (s):" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 -msgid "Overwrite Podcast Episode Metatags" +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:120 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "Deaktiviert" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" -msgstr "Aktiviert" - #: airtime_mvc/application/forms/GeneralPreferences.php:111 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgid "Intro Autoloading Playlist" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public LibreTime API" +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 -msgid "Required for embeddable schedule widget." +msgid "Overwrite Podcast Episode Metatags" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "Zeitzone Radiostation" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "Woche startet mit " -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' ist keine gültige E-Mail-Adresse im Standardformat local-part@hostname" +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" +msgstr "Aufzeichnen von Line-In?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' wurde nicht im erforderlichen Datumsformat '%format%' eingegeben" +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" +msgstr "Wiederholen?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' ist kürzer als %min% Zeichen lang" +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" +msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' ist mehr als %max% Zeichen lang" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' liegt nicht zwischen '%min%' und '%max%'" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "Passwörter stimmen nicht überein" +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" +msgstr "Passwort zurücksetzen" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 msgid "Auto Switch Off:" @@ -3138,16 +4324,6 @@ msgstr "" msgid "Show Source Mount:" msgstr "" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "Anmeldung" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "Geben sie die Zeichen ein, die im darunter liegenden Bild zu sehen sind." - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3161,26 +4337,98 @@ msgstr "Neues Passwort bestätigen" msgid "Password confirmation does not match your password." msgstr "Passwortbestätigung stimmt nicht mit Passwort überein" -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" -msgstr "Benutzername" - -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Passwort zurücksetzen" - -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" msgstr "" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "Tage" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Aktiviert:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "Stream Typ:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "Service Typ:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "Kanäle:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "1 - Mono" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "2 - Stereo" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "Server" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "Port" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "URL" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "Mount Point" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "Admin Benutzer" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "Admin Passwort" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "Server darf nicht leer sein." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "Port darf nicht leer sein." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "Mount darf nicht leer sein, wenn Icecast-Server verwendet wird." + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "Zeitzone Interface" + #: airtime_mvc/application/forms/Player.php:14 msgid "Now Playing" msgstr "Jetzt" @@ -3205,280 +4453,54 @@ msgstr "" msgid " - The player does not support Opus streams." msgstr "" -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - #: airtime_mvc/application/forms/Player.php:72 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -msgid "Preview:" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" -msgstr "Telefon:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" -msgstr "Sender-Webseite:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" -msgstr "Land:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" -msgstr "Stadt:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" -msgstr "Sender Beschreibung:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' ist keine gültige E-Mail-Adresse im Standardformat local-part@hostname" -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "Sie müssen die Datenschutzrichtlinien akzeptieren." +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' wurde nicht im erforderlichen Datumsformat '%format%' eingegeben" -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' ist kürzer als %min% Zeichen lang" -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' ist mehr als %max% Zeichen lang" -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "Alle meine Sendungen:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' liegt nicht zwischen '%min%' und '%max%'" -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr "Kriterien wählen" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "Bitrate (Kbps)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "Beschreibung" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "Sample Rate (KHz)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "Stunden" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "Minuten" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "Objekte" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "Statisch" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "Dynamisch" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "Playlist-Inhalt erstellen und Kriterien speichern" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "Erstellen" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "Shuffle Playlist-Inhalt (Durchmischen)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "Shuffle" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Beschränkung kann nicht leer oder kleiner als 0 sein." - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "Beschränkung kann nicht größer als 24 Stunden sein" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "Der Wert muß eine ganze Zahl sein." - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "Die Anzahl der Objekte ist auf 500 beschränkt." - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "Sie müssen Kriterium und Modifikator bestimmen" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "Die 'Dauer' muß im Format '00:00:00' eingegeben werden" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Der Wert muß im Timestamp-Format eingegeben werden (zB. 0000-00-00 oder 0000-00-00 00:00:00)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:597 -msgid "The value has to be numeric" -msgstr "Der eingegebene Wert muß aus Ziffern bestehen" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "Der eingegebene Wert muß kleiner sein als 2147483648" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Der eingegebene Wert muß aus weniger als %s Zeichen bestehen." - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "Wert kann nicht leer sein" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -msgid "Default License:" -msgstr "Standard Lizenz:" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "Alle Rechte vorbehalten" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -msgid "The work is in the public domain" -msgstr "Das Werk ist in der öffentlichen Domäne" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Zuordnung" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -msgid "Creative Commons Attribution Noncommercial" -msgstr "Creative Commons Zuordnung Noncommercial" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "Creative Commons Zuordnung No Derivative Works" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -msgid "Creative Commons Attribution Share Alike" -msgstr "Creative Commons Zuordnung Share Alike" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "Creative Commons Zuordnung Noncommercial Non Derivate Works" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "Creative Commons Zuordnung Noncommercial Share Alike" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" +msgstr "Passwörter stimmen nicht überein" #: airtime_mvc/application/forms/StreamSetting.php:26 msgid "Hardware Audio Output:" @@ -3556,381 +4578,636 @@ msgstr "" msgid "Custom / 3rd Party Streaming" msgstr "" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Aktiviert:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Stream Typ:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "Bitrate:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Service Typ:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Kanäle:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Mono" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Stereo" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Server" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Port" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "Name" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Mount Point" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Admin Benutzer" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Admin Passwort" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Server darf nicht leer sein." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "Port darf nicht leer sein." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Mount darf nicht leer sein, wenn Icecast-Server verwendet wird." - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "Import Verzeichnis:" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "Überwachte Verzeichnisse:" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "Kein gültiges Verzeichnis" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "Abspielen" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "Stopp" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -msgid "Set Cue In" -msgstr "Cue In setzen" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -msgid "Set Cue Out" -msgstr "Cue Out setzen" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "Cursor" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read on to find out more." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -" is easier than ever." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -" just a click away, you'll be on air and hands-free in no time." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/livestream.phtml:9 -#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2 -msgid "Live stream" -msgstr "Live Stream" - -#: airtime_mvc/application/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/DateHelper.php:213 #, php-format -msgid "%1$s copyright © %2$s All rights reserved.If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:493 +msgid "On Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:494 +msgid "Off Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:495 +msgid "Offline" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:179 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "E-Mail konnte nicht gesendet werden. Überprüfen sie die Einstellungen des E-Mail-Servers und vergwissern sie sich, dass dieser richtig konfiguriert wurde." - -#: airtime_mvc/application/controllers/LoginController.php:183 -msgid "That username or email address could not be found." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "Falscher Benutzername oder Passwort. Bitte versuchen sie es erneut." - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "Sie betrachten eine ältere Version von %s" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Sie können einem Dynamischen Smart Block keine Titel hinzufügen." - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Sie haben zum Löschen der gewählten %s (s) nicht die erforderliche Berechtigung." - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "Sie können einem Smart Block nur Titel hinzufügen." - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "Unbenannte Playlist" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "Unbenannter Smart Block" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "Unbekannte Playlist" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "Einstellungen aktualisiert." - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "Support-Einstellungen aktualisiert." - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "Support Feedback" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "Stream-Einstellungen aktualisiert." - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "Pfad muß angegeben werden" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "Problem mit Liquidsoap ..." - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "Wiederholung der Sendung %s vom %s um %s" -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" -msgstr "Cursor wählen" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" +msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" -msgstr "Cursor entfernen" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" +msgstr "Aufzeichnung existiert nicht" -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" -msgstr "Sendung existiert nicht" +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" +msgstr "Metadaten der aufgezeichneten Datei anzeigen" -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "Benutzer erfolgreich hinzugefügt!" +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "Sendungsinhalte verwalten" -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "Benutzer erfolgreich aktualisiert!" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "" -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "Einstellungen erfolgreich aktualisiert!" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" +msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Unbenannter Webstream" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" +msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Webstream gespeichert." +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" +msgstr "Sendung ändern" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Ungültige Formularwerte." +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Ungültiges Zeichen eingegeben" +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Tag muß angegeben werden" +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" +msgstr "Zugriff verweigert" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "Zeit muß angegeben werden" +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" +msgstr "Wiederkehrende Sendungen können nicht per Drag'n'Drop verschoben werden." -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" +#: airtime_mvc/application/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "Eine in der Vergangenheit liegende Sendung kann nicht verschoben werden." + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "Eine Sendung kann nicht in die Vergangenheit verschoben werden." + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "Sendungen können nicht überlappend geplant werden." + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Eine aufgezeichnete Sendung kann nicht verschoben werden, wenn der Zeitpunkt der Wiederholung weniger als eine Stunde bevor liegt." + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Die Sendung wurde gelöscht, weil die aufgezeichnete Sendung nicht existiert!" + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." msgstr "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich." +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "Titel" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "Startzeit" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "Endzeit" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" +msgstr "Abgespielt" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" +#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr " - Kriterien - " + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "Bit Rate (Kbps)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "Sample Rate (kHz)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "Stunden" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "Minuten" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "Titel" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "Dynamisch" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "Statisch" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "Playlist-Inhalt erstellen und Kriterien speichern" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "Inhalt der Playlist Mischen" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Beschränkung kann nicht leer oder kleiner als 0 sein" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "Beschränkung kann nicht größer als 24 Stunden sein" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "Der Wert muß eine ganze Zahl sein" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "Die Anzahl der Objekte ist auf 500 beschränkt" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "Sie müssen Kriterium und Modifikator bestimmen" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "Die 'Dauer' muß im Format '00:00:00' eingegeben werden" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Der Wert muß im Timestamp-Format eingegeben werden (zB. 0000-00-00 oder 0000-00-00 00:00:00)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "Der eingegebene Wert muß aus Ziffern bestehen" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "Der eingegebene Wert muß kleiner sein als 2147483648" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 #, php-format -msgid "Use %s Authentication:" +msgid "The value should be less than %s characters" +msgstr "Der eingegebene Wert muß aus weniger als %s Zeichen bestehen." + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" +msgstr "Der Wert darf nicht leer sein" + +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "Benutzerdefiniertes Login:" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "Benutzerdefinierter Benutzername" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Benutzerdefiniertes Passwort" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" -msgstr "" +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "ISRC-Nr.:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "" +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." +msgstr "Veröffentlichen..." -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "Das Feld Benutzername darf nicht leer sein." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" +msgstr "Import Verzeichnis:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "Das Feld Passwort darf nicht leer sein." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" +msgstr "Überwachte Verzeichnisse:" -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -msgid "days" -msgstr "Tage" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" +msgstr "Kein gültiges Verzeichnis" #: airtime_mvc/application/forms/AddShowRepeats.php:10 msgid "Link:" @@ -2651,8 +3894,9 @@ msgid "day of the week" msgstr "Tag der Woche" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "Zeitpunkt Ende:" @@ -2668,78 +3912,10 @@ msgstr "Enddatum muß nach dem Startdatum liegen" msgid "Please select a repeat day" msgstr "Bitte einen Tag zum Wiederholen wählen" -#: airtime_mvc/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Aufzeichnen von Line-In?" - -#: airtime_mvc/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Wiederholen?" - -#: airtime_mvc/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "Hintergrundfarbe:" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "Textfarbe:" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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 "Entfernen" - -#: airtime_mvc/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -msgid "Name:" -msgstr "Name:" - -#: airtime_mvc/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Unbenannte Sendung" - -#: airtime_mvc/application/forms/AddShowWhat.php:36 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "URL:" -msgstr "URL:" - -#: airtime_mvc/application/forms/AddShowWhat.php:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "Genre:" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "Beschreibung:" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" +msgstr "Wert ist erforderlich und darf nicht leer sein" #: airtime_mvc/application/forms/AddShowWhen.php:16 msgid "'%value%' does not fit the time format 'HH:mm'" @@ -2749,6 +3925,7 @@ msgstr "'%value%' ist nicht im Format 'HH:mm'" msgid "Start Time:" msgstr "" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "" @@ -2757,12 +3934,6 @@ msgstr "" msgid "End Time:" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "Dauer:" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "Zeitzone:" @@ -2780,7 +3951,7 @@ msgid "Cannot modify start date/time of the show that is already started" msgstr "Startdatum/Zeit können nicht geändert werden, wenn die Sendung bereits begonnen hat." #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "Datum/Uhrzeit des Endes darf nicht in der Vergangenheit liegen" @@ -2796,32 +3967,17 @@ msgstr "Die Dauer einer Sendung kann nicht 00h 00m sein" msgid "Cannot have duration greater than 24h" msgstr "Die Dauer einer Sendung kann nicht länger als 24h sein" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -msgstr "Sendungen können nicht überlappend geplant werden." - -#: airtime_mvc/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Suche Benutzer:" - -#: airtime_mvc/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "DJs:" - #: airtime_mvc/application/forms/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "Benutzername:" #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "Passwort:" @@ -2842,8 +3998,6 @@ msgstr "Nachname:" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "E-Mail:" @@ -2867,112 +4021,159 @@ msgid "User Type:" msgstr "Benutzertyp:" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "Benutzername ist bereits vorhanden." -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Wert ist erforderlich und darf nicht leer sein" - -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" msgstr "" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" +msgstr "Benutzerdefiniertes Login:" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "Benutzerdefinierter Benutzername" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Benutzerdefiniertes Passwort" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "Das Feld Benutzername darf nicht leer sein." + +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "Das Feld Passwort darf nicht leer sein." + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "Sendestation Zeitzone" + +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "Zeitpunkt Beginn:" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" -msgstr "Titel:" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" +msgstr "Ungültiges Zeichen eingegeben" -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" -msgstr "Interpret:" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" +msgstr "Suche Benutzer:" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" -msgstr "Album:" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" +msgstr "DJs:" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" -msgstr "Jahr:" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" -msgstr "Label:" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" +msgstr "Alle meine Sendungen:" -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" -msgstr "Komponist:" +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" -msgstr "Dirigent:" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" +msgstr "Hintergrundfarbe:" -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" -msgstr "Stimmung:" +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" +msgstr "Textfarbe:" -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" -msgstr "BPM:" +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" -msgstr "Copyright:" +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" -msgstr "ISRC-Nr.:" +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" -msgstr "Webseite:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 +msgid "Day must be specified" +msgstr "Tag muß angegeben werden" -#: airtime_mvc/application/forms/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" -msgstr "Sprache:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 +msgid "Time must be specified" +msgstr "Zeit muß angegeben werden" -#: airtime_mvc/application/forms/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" -msgstr "Startzeit" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich." -#: airtime_mvc/application/forms/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" -msgstr "Endzeit" +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Unbenannte Sendung" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Interface Zeitzone:" +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "Sendername" @@ -2981,12 +4182,10 @@ msgid "Station Description" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "Sender Logo:" #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "Hinweis: Grafiken, die größer als 600x600 sind, werden verkleinert." @@ -3009,94 +4208,83 @@ msgstr "Standard Fade In (s):" msgid "Default Fade Out (s):" msgstr "Standard Fade Out (s):" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 -msgid "Overwrite Podcast Episode Metatags" +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:120 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "Deaktiviert" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" -msgstr "Aktiviert" - #: airtime_mvc/application/forms/GeneralPreferences.php:111 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgid "Intro Autoloading Playlist" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public LibreTime API" +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 -msgid "Required for embeddable schedule widget." +msgid "Overwrite Podcast Episode Metatags" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "Sendestation Zeitzone" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "Woche beginnt am" -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' ist keine gültige E-Mail-Adresse im Format local-part@hostname" +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" +msgstr "Aufzeichnen von Line-In?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' entspricht nicht dem erforderlichen Datumsformat '%format%'" +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" +msgstr "Wiederholen?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' ist kürzer als %min% Zeichen lang" +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" +msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' ist mehr als %max% Zeichen lang" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' liegt nicht zwischen '%min%' und '%max%'" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "Passwörter stimmen nicht überein" +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" +msgstr "Passwort zurücksetzen" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 msgid "Auto Switch Off:" @@ -3140,16 +4328,6 @@ msgstr "" msgid "Show Source Mount:" msgstr "" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "Anmeldung" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "Geben sie die Zeichen aus dem Bild unten ein." - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3163,26 +4341,98 @@ msgstr "Neues Passwort bestätigen" msgid "Password confirmation does not match your password." msgstr "Passwortbestätigung stimmt nicht mit Passwort überein." -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" -msgstr "Benutzername" - -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Passwort zurücksetzen" - -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" msgstr "" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "Tage" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Aktiviert:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "Stream Typ:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "Service Typ:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "Kanäle:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "1 - Mono" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "2 - Stereo" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "Server" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "Port" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "URL" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "Mount Point" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "Admin Benutzer" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "Admin Passwort" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "Server darf nicht leer sein." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "Port darf nicht leer sein." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "Mount darf nicht leer sein, wenn Icecast-Server verwendet wird." + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "Interface Zeitzone:" + #: airtime_mvc/application/forms/Player.php:14 msgid "Now Playing" msgstr "Jetzt" @@ -3207,280 +4457,54 @@ msgstr "" msgid " - The player does not support Opus streams." msgstr "" -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - #: airtime_mvc/application/forms/Player.php:72 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -msgid "Preview:" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" -msgstr "Telefon:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" -msgstr "Sender-Webseite:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" -msgstr "Land:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" -msgstr "Stadt:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" -msgstr "Sender Beschreibung:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' ist keine gültige E-Mail-Adresse im Format local-part@hostname" -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "Sie müssen die Datenschutzrichtlinien akzeptieren." +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' entspricht nicht dem erforderlichen Datumsformat '%format%'" -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' ist kürzer als %min% Zeichen lang" -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' ist mehr als %max% Zeichen lang" -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "Alle meine Sendungen:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' liegt nicht zwischen '%min%' und '%max%'" -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr " - Kriterien - " - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "Bit Rate (Kbps)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "Beschreibung" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "Sample Rate (kHz)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "Stunden" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "Minuten" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "Titel" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "Statisch" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "Dynamisch" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "Playlist-Inhalt erstellen und Kriterien speichern" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "Erstellen" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "Inhalt der Playlist Mischen" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "Mischen" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Beschränkung kann nicht leer oder kleiner als 0 sein" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "Beschränkung kann nicht größer als 24 Stunden sein" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "Der Wert muß eine ganze Zahl sein" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "Die Anzahl der Objekte ist auf 500 beschränkt" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "Sie müssen Kriterium und Modifikator bestimmen" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "Die 'Dauer' muß im Format '00:00:00' eingegeben werden" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Der Wert muß im Timestamp-Format eingegeben werden (zB. 0000-00-00 oder 0000-00-00 00:00:00)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:597 -msgid "The value has to be numeric" -msgstr "Der eingegebene Wert muß aus Ziffern bestehen" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "Der eingegebene Wert muß kleiner sein als 2147483648" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Der eingegebene Wert muß aus weniger als %s Zeichen bestehen." - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "Der Wert darf nicht leer sein" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -msgid "Default License:" -msgstr "Standard Lizenz:" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "Alle Rechte vorbehalten" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -msgid "The work is in the public domain" -msgstr "Die Rechte an dieser Arbeit sind gemeinfrei" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -msgid "Creative Commons Attribution" -msgstr "[CC-BY] Creative Commons Namensnennung" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -msgid "Creative Commons Attribution Noncommercial" -msgstr "[CC-BY-NC] Creative Commons Namensnennung, keine kommerzielle Nutzung" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "[CC-BY-ND] Creative Commons Namensnennung, keine Bearbeitung" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -msgid "Creative Commons Attribution Share Alike" -msgstr "[CC-BY-SA] Creative Commons Namensnennung, Weitergabe unter gleichen Bedingungen" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "[CC-BY-NC-ND] Creative Commons Namensnennung, keine kommerzielle Nutzung, keine Bearbeitung" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "[CC-BY-NC-SA] Creative Commons Namensnennung, keine kommerzielle Nutzung, Weitergabe unter gleichen Bedingungen" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" +msgstr "Passwörter stimmen nicht überein" #: airtime_mvc/application/forms/StreamSetting.php:26 msgid "Hardware Audio Output:" @@ -3558,381 +4582,636 @@ msgstr "" msgid "Custom / 3rd Party Streaming" msgstr "" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Aktiviert:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Stream Typ:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "Bitrate:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Service Typ:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Kanäle:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Mono" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Stereo" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Server" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Port" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "Name" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Mount Point" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Admin Benutzer" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Admin Passwort" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Server darf nicht leer sein." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "Port darf nicht leer sein." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Mount darf nicht leer sein, wenn Icecast-Server verwendet wird." - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "Import Verzeichnis:" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "Überwachte Verzeichnisse:" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "Kein gültiges Verzeichnis" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "Play" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "Stop" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -msgid "Set Cue In" -msgstr "Set Cue In" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -msgid "Set Cue Out" -msgstr "Set Cue Out" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "Cursor" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read on to find out more." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -" is easier than ever." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -" just a click away, you'll be on air and hands-free in no time." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/livestream.phtml:9 -#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2 -msgid "Live stream" -msgstr "Live Stream" - -#: airtime_mvc/application/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/DateHelper.php:213 #, php-format -msgid "%1$s copyright © %2$s All rights reserved.If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:493 +msgid "On Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:494 +msgid "Off Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:495 +msgid "Offline" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:179 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "Το e-mail δεν μπόρεσε να σταλεί. Ελέγξτε τις ρυθμίσεις email του διακομιστή σας και βεβαιωθείτε ότι έχει ρυθμιστεί σωστά." - -#: airtime_mvc/application/controllers/LoginController.php:183 -msgid "That username or email address could not be found." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "Άκυρο όνομα χρήστη ή κωδικός πρόσβασης. Παρακαλώ δοκιμάστε ξανά." - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "Βλέπετε μια παλαιότερη έκδοση του %s" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Δεν μπορείτε να προσθέσετε κομμάτια σε δυναμικά blocks." - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Δεν έχετε άδεια διαγραφής επιλεγμένων %s(s)." - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "Μπορείτε να προσθέσετε κομμάτια μόνο σε smart block." - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "Λίστα Αναπαραγωγής χωρίς Τίτλο" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "Smart Block χωρίς Τίτλο" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "Άγνωστη λίστα αναπαραγωγής" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "Οι προτιμήσεις ενημερώθηκαν." - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "Η ρύθμιση υποστήριξης ενημερώθηκε." - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "Σχόλια Υποστήριξης" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "Η Ρύθμιση Stream Ενημερώθηκε." - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "η διαδρομή πρέπει να καθοριστεί" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "Πρόβλημα με Liquidsoap ..." - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "Αναμετάδοση της εκπομπής %s από %s σε %s" -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" -msgstr "Επιλέξτε cursor" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" +msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" -msgstr "Αφαίρεση cursor" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" +msgstr "Το αρχείο δεν υπάρχει" -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" -msgstr "η εκπομπή δεν υπάρχει" +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" +msgstr "Προβολή εγγεγραμμένων Αρχείων Μεταδεδομένων " -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "Ο χρήστης προστέθηκε επιτυχώς!" +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "" -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "Ο χρήστης ενημερώθηκε με επιτυχία!" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "" -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "Οι ρυθμίσεις ενημερώθηκαν επιτυχώς!" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" +msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Webstream χωρίς Τίτλο" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" +msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Το Webstream αποθηκεύτηκε." +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" +msgstr "Επεξεργασία Εκπομπής" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Άκυρες μορφές αξίας." +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Εισαγωγή άκυρου χαρακτήρα" +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Η μέρα πρέπει να προσδιοριστεί" +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" +msgstr "Δεν έχετε δικαίωμα πρόσβασης" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "Η ώρα πρέπει να προσδιοριστεί" +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" +msgstr "Δεν είναι δυνατό το drag and drop επαναλαμβανόμενων εκπομπών" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Πρέπει να περιμένετε τουλάχιστον 1 ώρα για την αναμετάδοση" +#: airtime_mvc/application/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "Δεν είναι δυνατή η μετακίνηση περασμένης εκπομπής" + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "Δεν είναι δυνατή η μετακίνηση εκπομπής στο παρελθόν" + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "Δεν είναι δυνατός ο προγραμματισμός αλληλοεπικαλυπτόμενων εκπομπών" + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Δεν είναι δυνατή η μετακίνηση ηχογραφημένης εκπομπής σε λιγότερο από 1 ώρα πριν από την αναμετάδοση της." + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Η εκπομπή διεγράφη επειδή δεν υπάρχει ηχογραφημένη εκπομπή!" + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Πρέπει να περιμένετε 1 ώρα για την αναμετάδοση." + +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "Κομμάτι" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "Ώρα Έναρξης" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "Ώρα Τέλους" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" +msgstr "Παίχτηκε" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" +#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr "Επιλέξτε κριτήρια" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "Bit Rate (Kbps)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "Ρυθμός Δειγματοληψίας (kHz)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "ώρες" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "λεπτά" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "στοιχεία" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "Δυναμικό" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "Στατικό" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "Δημιουργία λίστας αναπαραγωγής περιεχομένου και αποθήκευση κριτηρίων" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "Περιεχόμενο λίστας Shuffle " + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Το όριο δεν μπορεί να είναι κενό ή μικρότερο από 0" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "Το όριο δεν μπορεί να είναι ξεπερνάει τις 24 ώρες" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "Η τιμή πρέπει να είναι ακέραιος αριθμός" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "Το 500 είναι η μέγιστη οριακή τιμή σημείου, που μπορείτε να ορίσετε" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "Θα πρέπει να επιλέξετε Κριτήρια και Τροποποιητή" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "Το «Μήκος» θα πρέπει να είναι σε υπό μορφής '00:00:00'" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Η τιμή θα πρέπει να είναι υπο μορφής ώρας (π.χ. 0000-00-00 ή 0000-00-00 00:00:00)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "Η τιμή πρέπει να είναι αριθμός" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "Η τιμή πρέπει να είναι μικρότερη από 2147483648" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 #, php-format -msgid "Use %s Authentication:" +msgid "The value should be less than %s characters" +msgstr "Η τιμή πρέπει να είναι μικρότερη από %s χαρακτήρες" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" +msgstr "Η αξία δεν μπορεί να είναι κενή" + +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "Χρήση Προσαρμοσμένης Ταυτοποίησης:" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "Προσαρμοσμένο Όνομα Χρήστη" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Προσαρμοσμένος Κωδικός Πρόσβασης" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "Αριθμός ISRC:" + +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" +msgstr "Εισαγωγή Φακέλου:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "Το πεδίο 'Όνομα Χρήστη' δεν μπορεί να είναι κενό." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" +msgstr "Παροβεβλημμένοι Φάκελοι:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "Το πεδίο 'Κωδικός Πρόσβασης' δεν μπορεί να είναι κενό." - -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -msgid "days" -msgstr "ημέρες" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" +msgstr "Μη έγκυρο Ευρετήριο" #: airtime_mvc/application/forms/AddShowRepeats.php:10 msgid "Link:" @@ -2636,8 +3881,9 @@ msgid "day of the week" msgstr "ημέρα της εβδομάδας" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "Ημερομηνία Λήξης:" @@ -2653,78 +3899,10 @@ msgstr "Η ημερομηνία λήξης πρέπει να είναι μετά msgid "Please select a repeat day" msgstr "Επιλέξτε ημέρα επανάληψης" -#: airtime_mvc/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Ηχογράφηση από Line In;" - -#: airtime_mvc/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Αναμετάδοση;" - -#: airtime_mvc/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "Χρώμα Φόντου:" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "Χρώμα Κειμένου:" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -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 "Διεύθυνση URL:" - -#: airtime_mvc/application/forms/AddShowWhat.php:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "Είδος:" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "Περιγραφή:" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" +msgstr "Απαιτείται αξία και δεν μπορεί να είναι κενή" #: airtime_mvc/application/forms/AddShowWhen.php:16 msgid "'%value%' does not fit the time format 'HH:mm'" @@ -2734,6 +3912,7 @@ msgstr "'%value%' δεν ταιριάζει με τη μορφή της ώρας msgid "Start Time:" msgstr "" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "" @@ -2742,12 +3921,6 @@ msgstr "" msgid "End Time:" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "Διάρκεια:" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "Ζώνη Ώρας" @@ -2765,7 +3938,7 @@ msgid "Cannot modify start date/time of the show that is already started" msgstr "Αδύνατη η τροποποίηση ημερομηνίας/ώρας έναρξης της εκπομπής που έχει ήδη αρχίσει" #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "Η λήξη ημερομηνίας/χρόνου δεν μπορεί να είναι στο παρελθόν" @@ -2781,32 +3954,17 @@ msgstr "Δεν μπορεί να έχει διάρκεια 00h 00m" msgid "Cannot have duration greater than 24h" msgstr "Δεν μπορεί να έχει διάρκεια μεγαλύτερη από 24 ώρες" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -msgstr "Δεν είναι δυνατός ο προγραμματισμός αλληλοεπικαλυπτόμενων εκπομπών" - -#: airtime_mvc/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Αναζήτηση Χρηστών:" - -#: airtime_mvc/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "DJs:" - #: airtime_mvc/application/forms/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "Όνομα Χρήστη:" #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "Κωδικός πρόσβασης:" @@ -2827,8 +3985,6 @@ msgstr "Επώνυμο:" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "Email:" @@ -2852,112 +4008,159 @@ msgid "User Type:" msgstr "Τύπος Χρήστη:" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "Το όνομα εισόδου δεν είναι μοναδικό." -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Απαιτείται αξία και δεν μπορεί να είναι κενή" - -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" msgstr "" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" +msgstr "Χρήση Προσαρμοσμένης Ταυτοποίησης:" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "Προσαρμοσμένο Όνομα Χρήστη" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Προσαρμοσμένος Κωδικός Πρόσβασης" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "Το πεδίο 'Όνομα Χρήστη' δεν μπορεί να είναι κενό." + +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "Το πεδίο 'Κωδικός Πρόσβασης' δεν μπορεί να είναι κενό." + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "Ζώνη Ώρας Σταθμού" + +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "Ημερομηνία Έναρξης:" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" -msgstr "Τίτλος:" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" +msgstr "Εισαγωγή άκυρου χαρακτήρα" -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" -msgstr "Δημιουργός:" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" +msgstr "Αναζήτηση Χρηστών:" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" -msgstr "Album:" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" +msgstr "DJs:" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" -msgstr "Έτος" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" -msgstr "Δισκογραφική:" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" +msgstr "Όλες οι Εκπομπές μου:" -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" -msgstr "Συνθέτης:" +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" -msgstr "Μαέστρος:" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" +msgstr "Χρώμα Φόντου:" -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" -msgstr "Διάθεση:" +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" +msgstr "Χρώμα Κειμένου:" -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" -msgstr "BPM:" +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" -msgstr "Copyright:" +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" -msgstr "Αριθμός ISRC:" +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" -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/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" -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/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" -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 "Πρέπει να περιμένετε τουλάχιστον 1 ώρα για την αναμετάδοση" -#: airtime_mvc/application/forms/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" -msgstr "Ώρα Τέλους" +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Εκπομπή χωρίς Τίτλο" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Interface Ζώνης ώρας:" +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "Όνομα Σταθμού" @@ -2966,12 +4169,10 @@ msgid "Station Description" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "Λογότυπο Σταθμού:" #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "Σημείωση: Οτιδήποτε μεγαλύτερο από 600x600 θα αλλάξει μέγεθος." @@ -2994,94 +4195,83 @@ msgstr "Προεπιλεγμένο Fade In (s):" msgid "Default Fade Out (s):" msgstr "Προεπιλεγμένο Fade Out (s):" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 -msgid "Overwrite Podcast Episode Metatags" +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:120 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "Απενεργοποιημένο" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" -msgstr "Ενεργοποιημένο" - #: airtime_mvc/application/forms/GeneralPreferences.php:111 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgid "Intro Autoloading Playlist" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public LibreTime API" +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 -msgid "Required for embeddable schedule widget." +msgid "Overwrite Podcast Episode Metatags" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "Ζώνη Ώρας Σταθμού" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "Η Εβδομάδα αρχίζει " -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' δεν αποτελεί έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου στη βασική μορφή local-part@hostname" +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" +msgstr "Ηχογράφηση από Line In;" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' δεν ταιριάζει με τη μορφή ημερομηνίας '%format%'" +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" +msgstr "Αναμετάδοση;" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' είναι λιγότερο από %min% χαρακτήρες " +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" +msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' είναι περισσότερο από %max% χαρακτήρες " - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' δεν είναι μεταξύ '%min%' και '%max%', συνολικά" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "Οι κωδικοί πρόσβασης δεν συμπίπτουν" +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" +msgstr "Επαναφορά κωδικού πρόσβασης" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 msgid "Auto Switch Off:" @@ -3125,16 +4315,6 @@ msgstr "" msgid "Show Source Mount:" msgstr "" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "Σύνδεση" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "Πληκτρολογήστε τους χαρακτήρες που βλέπετε στην παρακάτω εικόνα." - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3148,26 +4328,98 @@ msgstr "Επιβεβαίωση νέου κωδικού πρόσβασης" msgid "Password confirmation does not match your password." msgstr "Η επιβεβαίωση κωδικού δεν ταιριάζει με τον κωδικό πρόσβασής σας." -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" -msgstr "Όνομα Χρήστη" - -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Επαναφορά κωδικού πρόσβασης" - -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" msgstr "" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "ημέρες" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Ενεργοποιημένο" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "Τύπος Stream:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "Τύπος Υπηρεσίας:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "Κανάλια" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "1 - Mono" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "2 - Stereo" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "Διακομιστής" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "Θύρα" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "Διεύθυνση URL:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "Σημείο Προσάρτησης" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "Διαχειριστής Χρήστης" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "Κωδικός πρόσβασης Διαχειριστή" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "Ο διακομιστής δεν μπορεί να είναι κενός." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "Το Port δεν μπορεί να είναι κενό." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "Η προσάρτηση δεν μπορεί να είναι κενή με διακομιστή Icecast." + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "Interface Ζώνης ώρας:" + #: airtime_mvc/application/forms/Player.php:14 msgid "Now Playing" msgstr "Αναπαραγωγή σε Εξέλιξη" @@ -3192,280 +4444,54 @@ msgstr "" msgid " - The player does not support Opus streams." msgstr "" -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - #: airtime_mvc/application/forms/Player.php:72 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -msgid "Preview:" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" -msgstr "Τηλέφωνο:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" -msgstr "Ιστοσελίδα Σταθμού:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" -msgstr "Χώρα" - -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" -msgstr "Πόλη" - -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" -msgstr "Περιγραφή Σταθμού:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' δεν αποτελεί έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου στη βασική μορφή local-part@hostname" -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "Πρέπει να συμφωνείτε με την πολιτική προστασίας προσωπικών δεδομένων." +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' δεν ταιριάζει με τη μορφή ημερομηνίας '%format%'" -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' είναι λιγότερο από %min% χαρακτήρες " -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' είναι περισσότερο από %max% χαρακτήρες " -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "Όλες οι Εκπομπές μου:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' δεν είναι μεταξύ '%min%' και '%max%', συνολικά" -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr "Επιλέξτε κριτήρια" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "Bit Rate (Kbps)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "Περιγραφή" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "Ρυθμός Δειγματοληψίας (kHz)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "ώρες" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "λεπτά" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "στοιχεία" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "Στατικό" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "Δυναμικό" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "Δημιουργία λίστας αναπαραγωγής περιεχομένου και αποθήκευση κριτηρίων" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "Δημιουργία" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "Περιεχόμενο λίστας Shuffle " - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "Shuffle" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Το όριο δεν μπορεί να είναι κενό ή μικρότερο από 0" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "Το όριο δεν μπορεί να είναι ξεπερνάει τις 24 ώρες" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "Η τιμή πρέπει να είναι ακέραιος αριθμός" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "Το 500 είναι η μέγιστη οριακή τιμή σημείου, που μπορείτε να ορίσετε" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "Θα πρέπει να επιλέξετε Κριτήρια και Τροποποιητή" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "Το «Μήκος» θα πρέπει να είναι σε υπό μορφής '00:00:00'" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Η τιμή θα πρέπει να είναι υπο μορφής ώρας (π.χ. 0000-00-00 ή 0000-00-00 00:00:00)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:597 -msgid "The value has to be numeric" -msgstr "Η τιμή πρέπει να είναι αριθμός" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "Η τιμή πρέπει να είναι μικρότερη από 2147483648" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Η τιμή πρέπει να είναι μικρότερη από %s χαρακτήρες" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "Η αξία δεν μπορεί να είναι κενή" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -msgid "Default License:" -msgstr "Προεπιλεγμένη Άδεια :" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "Διατήρηση όλων των δικαιωμάτων" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -msgid "The work is in the public domain" -msgstr "Εργασία δημόσιας χρήσης" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -msgid "Creative Commons Attribution" -msgstr "Απόδοση Creative Commons" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -msgid "Creative Commons Attribution Noncommercial" -msgstr "Απόδοση Creative Commons Μη Εμπορική Χρήση" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "Απόδοση Creative Commons Όχι Παράγωγα Έργα" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -msgid "Creative Commons Attribution Share Alike" -msgstr "Απόδοση Creative Commons Share Alike" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "Απόδοση Creative Commons Μη Εμπορική Χρήση Όχι Παράγωγα Έργα" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "Απόδοση Creative Commons Μη Εμπορική Χρήση Share Alike" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" +msgstr "Οι κωδικοί πρόσβασης δεν συμπίπτουν" #: airtime_mvc/application/forms/StreamSetting.php:26 msgid "Hardware Audio Output:" @@ -3543,381 +4569,636 @@ msgstr "" msgid "Custom / 3rd Party Streaming" msgstr "" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Ενεργοποιημένο" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Τύπος Stream:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "Ρυθμός Δεδομένων:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Τύπος Υπηρεσίας:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Κανάλια" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Mono" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Stereo" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Διακομιστής" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Θύρα" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "Διεύθυνση URL:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "Ονομασία" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Σημείο Προσάρτησης" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Διαχειριστής Χρήστης" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Κωδικός πρόσβασης Διαχειριστή" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Ο διακομιστής δεν μπορεί να είναι κενός." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "Το Port δεν μπορεί να είναι κενό." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Η προσάρτηση δεν μπορεί να είναι κενή με διακομιστή Icecast." - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -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/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "Αναπαραγωγή" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "Παύση" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -msgid "Set Cue In" -msgstr "Ρύθμιση Cue In" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -msgid "Set Cue Out" -msgstr "Ρύθμιση Cue Out" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "Cursor" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read on to find out more." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -" is easier than ever." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -" just a click away, you'll be on air and hands-free in no time." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/livestream.phtml:9 -#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2 -msgid "Live stream" -msgstr "Ζωντανό Stream" - -#: airtime_mvc/application/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/DateHelper.php:213 #, php-format -msgid "%1$s copyright © %2$s All rights reserved.If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:493 +msgid "On Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:494 +msgid "Off Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:495 +msgid "Offline" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:179 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "Email could not be sent. Check your mail server settings and ensure it has been configured properly." - -#: airtime_mvc/application/controllers/LoginController.php:183 -msgid "That username or email address could not be found." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "Wrong username or password provided. Please try again." - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "You are viewing an older version of %s" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "You cannot add tracks to dynamic blocks." - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "You don't have permission to delete selected %s(s)." - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "You can only add tracks to smart block." - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "Untitled Playlist" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "Untitled Smart Block" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "Unknown Playlist" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "Preferences updated." - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "Support setting updated." - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "Support Feedback" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "Stream Setting Updated." - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "path should be specified" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "Problem with Liquidsoap..." - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "Rebroadcast of show %s from %s at %s" -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" -msgstr "Select cursor" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" +msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" -msgstr "Remove cursor" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" +msgstr "Record file doesn't exist" -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" -msgstr "show does not exist" +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" +msgstr "View Recorded File Metadata" -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "User added successfully!" +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "" -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "User updated successfully!" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "" -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "Settings updated successfully!" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" +msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Untitled Webstream" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" +msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Webstream saved." +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" +msgstr "Edit Show" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Invalid form values." +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Invalid character entered" +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Day must be specified" +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" +msgstr "Permission denied" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "Time must be specified" +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" +msgstr "Can't drag and drop repeating shows" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Must wait at least 1 hour to rebroadcast" +#: airtime_mvc/application/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "Can't move a past show" + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "Can't move show into past" + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "Cannot schedule overlapping shows" + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Can't move a recorded show less than 1 hour before its rebroadcasts." + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Show was deleted because recorded show does not exist!" + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Must wait 1 hour to rebroadcast." + +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "Track" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "Start Time" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "End Time" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" +msgstr "Played" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" +#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr "Select criteria" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "Bit Rate (Kbps)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "Sample Rate (kHz)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "hours" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "minutes" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "items" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "Dynamic" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "Static" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "Generate playlist content and save criteria" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "Shuffle playlist content" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Limit cannot be empty or smaller than 0" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "Limit cannot be more than 24 hrs" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "The value should be an integer" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "500 is the max item limit value you can set" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "You must select Criteria and Modifier" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "'Length' should be in '00:00:00' format" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "The value has to be numeric" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "The value should be less then 2147483648" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 #, php-format -msgid "Use %s Authentication:" +msgid "The value should be less than %s characters" +msgstr "The value should be less than %s characters" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" +msgstr "Value cannot be empty" + +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "Use Custom Authentication:" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "Custom Username" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Custom Password" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "ISRC Number:" + +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" +msgstr "Import Folder:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "Username field cannot be empty." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" +msgstr "Watched Folders:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "Password field cannot be empty." - -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -msgid "days" -msgstr "days" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" +msgstr "Not a valid Directory" #: airtime_mvc/application/forms/AddShowRepeats.php:10 msgid "Link:" @@ -2636,8 +3881,9 @@ msgid "day of the week" msgstr "day of the week" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "Date End:" @@ -2653,78 +3899,10 @@ msgstr "End date must be after start date" msgid "Please select a repeat day" msgstr "Please select a repeat day" -#: airtime_mvc/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Record from Line In?" - -#: airtime_mvc/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Rebroadcast?" - -#: airtime_mvc/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "Background Colour:" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "Text Colour:" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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 "Remove" - -#: airtime_mvc/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -msgid "Name:" -msgstr "Name:" - -#: airtime_mvc/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Untitled Show" - -#: airtime_mvc/application/forms/AddShowWhat.php:36 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "URL:" -msgstr "URL:" - -#: airtime_mvc/application/forms/AddShowWhat.php:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "Genre:" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "Description:" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" +msgstr "Value is required and can't be empty" #: airtime_mvc/application/forms/AddShowWhen.php:16 msgid "'%value%' does not fit the time format 'HH:mm'" @@ -2734,6 +3912,7 @@ msgstr "'%value%' does not fit the time format 'HH:mm'" msgid "Start Time:" msgstr "" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "" @@ -2742,12 +3921,6 @@ msgstr "" msgid "End Time:" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "Duration:" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "Timezone:" @@ -2765,7 +3938,7 @@ msgid "Cannot modify start date/time of the show that is already started" msgstr "Cannot modify start date/time of the show that is already started" #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "End date/time cannot be in the past" @@ -2781,32 +3954,17 @@ msgstr "Cannot have duration 00h 00m" msgid "Cannot have duration greater than 24h" msgstr "Cannot have duration greater than 24h" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -msgstr "Cannot schedule overlapping shows" - -#: airtime_mvc/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Search Users:" - -#: airtime_mvc/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "DJs:" - #: airtime_mvc/application/forms/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "Username:" #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "Password:" @@ -2827,8 +3985,6 @@ msgstr "Last name:" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "Email:" @@ -2852,112 +4008,159 @@ msgid "User Type:" msgstr "User Type:" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "Login name is not unique." -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Value is required and can't be empty" - -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" msgstr "" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" +msgstr "Use Custom Authentication:" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "Custom Username" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Custom Password" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "Username field cannot be empty." + +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "Password field cannot be empty." + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "Station Timezone" + +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "Date Start:" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" -msgstr "Title:" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" +msgstr "Invalid character entered" -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" -msgstr "Creator:" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" +msgstr "Search Users:" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" -msgstr "Album:" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" +msgstr "DJs:" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" -msgstr "Year:" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" -msgstr "Label:" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" +msgstr "All My Shows:" -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" -msgstr "Composer:" +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" -msgstr "Conductor:" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" +msgstr "Background Colour:" -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" -msgstr "Mood:" +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" +msgstr "Text Colour:" -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" -msgstr "BPM:" +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" -msgstr "Copyright:" +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" -msgstr "ISRC Number:" +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" -msgstr "Website:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 +msgid "Day must be specified" +msgstr "Day must be specified" -#: airtime_mvc/application/forms/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" -msgstr "Language:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 +msgid "Time must be specified" +msgstr "Time must be specified" -#: airtime_mvc/application/forms/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" -msgstr "Start Time" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Must wait at least 1 hour to rebroadcast" -#: airtime_mvc/application/forms/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" -msgstr "End Time" +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Untitled Show" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Interface Timezone:" +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "Station Name" @@ -2966,12 +4169,10 @@ msgid "Station Description" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "Station Logo:" #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "Note: Anything larger than 600x600 will be resized." @@ -2994,94 +4195,83 @@ msgstr "Default Fade In (s):" msgid "Default Fade Out (s):" msgstr "Default Fade Out (s):" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 -msgid "Overwrite Podcast Episode Metatags" +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:120 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "Disabled" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" -msgstr "Enabled" - #: airtime_mvc/application/forms/GeneralPreferences.php:111 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgid "Intro Autoloading Playlist" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public LibreTime API" +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 -msgid "Required for embeddable schedule widget." +msgid "Overwrite Podcast Episode Metatags" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "Station Timezone" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "Week Starts On" -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' is no valid email address in the basic format local-part@hostname" +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" +msgstr "Record from Line In?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' does not fit the date format '%format%'" +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" +msgstr "Rebroadcast?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' is less than %min% characters long" +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" +msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' is more than %max% characters long" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' is not between '%min%' and '%max%', inclusively" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "Passwords do not match" +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" +msgstr "Reset password" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 msgid "Auto Switch Off:" @@ -3125,16 +4315,6 @@ msgstr "" msgid "Show Source Mount:" msgstr "" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "Login" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "Type the characters you see in the picture below." - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3148,26 +4328,98 @@ msgstr "Confirm new password" msgid "Password confirmation does not match your password." msgstr "Password confirmation does not match your password." -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" -msgstr "Username" - -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Reset password" - -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" msgstr "" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "days" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Enabled:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "Stream Type:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "Service Type:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "Channels:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "1 - Mono" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "2 - Stereo" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "Server" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "Port" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "URL" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "Mount Point" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "Admin User" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "Admin Password" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "Server cannot be empty." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "Port cannot be empty." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "Mount cannot be empty with Icecast server." + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "Interface Timezone:" + #: airtime_mvc/application/forms/Player.php:14 msgid "Now Playing" msgstr "Now Playing" @@ -3192,280 +4444,54 @@ msgstr "" msgid " - The player does not support Opus streams." msgstr "" -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - #: airtime_mvc/application/forms/Player.php:72 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -msgid "Preview:" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" -msgstr "Phone:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" -msgstr "Station Web Site:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" -msgstr "Country:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" -msgstr "City:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" -msgstr "Station Description:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' is no valid email address in the basic format local-part@hostname" -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "You have to agree to privacy policy." +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' does not fit the date format '%format%'" -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' is less than %min% characters long" -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' is more than %max% characters long" -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "All My Shows:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' is not between '%min%' and '%max%', inclusively" -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr "Select criteria" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "Bit Rate (Kbps)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "Description" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "Sample Rate (kHz)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "hours" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "minutes" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "items" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "Static" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "Dynamic" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "Generate playlist content and save criteria" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "Generate" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "Shuffle playlist content" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "Shuffle" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Limit cannot be empty or smaller than 0" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "Limit cannot be more than 24 hrs" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "The value should be an integer" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "500 is the max item limit value you can set" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "You must select Criteria and Modifier" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "'Length' should be in '00:00:00' format" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:597 -msgid "The value has to be numeric" -msgstr "The value has to be numeric" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "The value should be less then 2147483648" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "The value should be less than %s characters" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "Value cannot be empty" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -msgid "Default License:" -msgstr "Default License:" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "All rights are reserved" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -msgid "The work is in the public domain" -msgstr "The work is in the public domain" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Attribution" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -msgid "Creative Commons Attribution Noncommercial" -msgstr "Creative Commons Attribution Noncommercial" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "Creative Commons Attribution No Derivative Works" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -msgid "Creative Commons Attribution Share Alike" -msgstr "Creative Commons Attribution Share Alike" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "Creative Commons Attribution Noncommercial Non Derivate Works" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "Creative Commons Attribution Noncommercial Share Alike" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" +msgstr "Passwords do not match" #: airtime_mvc/application/forms/StreamSetting.php:26 msgid "Hardware Audio Output:" @@ -3543,381 +4569,636 @@ msgstr "" msgid "Custom / 3rd Party Streaming" msgstr "" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Enabled:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Stream Type:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "Bit Rate:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Service Type:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Channels:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Mono" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Stereo" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Server" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Port" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "Name" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Mount Point" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Admin User" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Admin Password" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Server cannot be empty." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "Port cannot be empty." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Mount cannot be empty with Icecast server." - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "Import Folder:" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "Watched Folders:" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "Not a valid Directory" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "Play" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "Stop" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -msgid "Set Cue In" -msgstr "Set Cue In" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -msgid "Set Cue Out" -msgstr "Set Cue Out" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "Cursor" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read on to find out more." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -" is easier than ever." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -" just a click away, you'll be on air and hands-free in no time." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/livestream.phtml:9 -#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2 -msgid "Live stream" -msgstr "Live stream" - -#: airtime_mvc/application/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/DateHelper.php:213 #, php-format -msgid "%1$s copyright © %2$s All rights reserved.If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:493 +msgid "On Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:494 +msgid "Off Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:495 +msgid "Offline" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "Please enter your username and password." - -#: airtime_mvc/application/controllers/LoginController.php:179 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "Email could not be sent. Check your mail server settings and ensure it has been configured properly." - -#: airtime_mvc/application/controllers/LoginController.php:183 -msgid "That username or email address could not be found." +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "There was a problem with the username or email address you entered." - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "Wrong username or password provided. Please try again." - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "You are viewing an older version of %s" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "You cannot add tracks to dynamic blocks." - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "You don't have permission to delete selected %s(s)." - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "You can only add tracks to smart block." - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "Untitled Playlist" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "Untitled Smart Block" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "Unknown Playlist" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "Preferences updated." - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "Support setting updated." - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "Support Feedback" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "Stream Setting Updated." - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "path should be specified" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "Problem with Liquidsoap..." - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "Request method not accepted" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "Rebroadcast of show %s from %s at %s" -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" -msgstr "Select cursor" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" +msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" -msgstr "Remove cursor" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" +msgstr "Record file doesn't exist" -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" -msgstr "show does not exist" +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" +msgstr "View Recorded File Metadata" -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "User added successfully!" +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "Schedule Tracks" -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "User updated successfully!" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "Clear Show" -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "Settings updated successfully!" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" +msgstr "Cancel Show" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Untitled Webstream" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" +msgstr "Edit Instance" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Webstream saved." +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" +msgstr "Edit Show" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Invalid form values." +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" +msgstr "Delete Instance" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Invalid character entered" +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" +msgstr "Delete Instance and All Following" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Day must be specified" +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" +msgstr "Permission denied" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "Time must be specified" +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" +msgstr "Can't drag and drop repeating shows" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Must wait at least 1 hour to rebroadcast" +#: airtime_mvc/application/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "Can't move a past show" + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "Can't move show into past" + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "Cannot schedule overlapping shows" + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Can't move a recorded show less than 1 hour before its rebroadcasts." + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Show was deleted because recorded show does not exist!" + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Must wait 1 hour to rebroadcast." + +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "Track" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "Start Time" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "End Time" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" +msgstr "Played" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" +#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr "Select criteria" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "Bit Rate (Kbps)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "Sample Rate (kHz)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "hours" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "minutes" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "items" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "Randomly" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "Newest" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "Oldest" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "Type:" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "Dynamic" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "Static" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "Allow Repeated Tracks:" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "Sort Tracks:" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "Limit to:" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "Generate playlist content and save criteria" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "Shuffle playlist content" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Limit cannot be empty or smaller than 0" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "Limit cannot be more than 24 hrs" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "The value should be an integer" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "500 is the max item limit value you can set" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "You must select Criteria and Modifier" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "'Length' should be in '00:00:00' format" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "The value has to be numeric" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "The value should be less then 2147483648" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 #, php-format -msgid "Use %s Authentication:" -msgstr "Use %s Authentication:" +msgid "The value should be less than %s characters" +msgstr "The value should be less than %s characters" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "Use Custom Authentication:" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" +msgstr "Value cannot be empty" -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "Custom Username" +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Custom Password" +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" -msgstr "Host:" +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "ISRC Number:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" -msgstr "Port:" +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "Mount:" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" +msgstr "Import Folder:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "Username field cannot be empty." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" +msgstr "Watched Folders:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "Password field cannot be empty." - -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -msgid "days" -msgstr "days" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" +msgstr "Not a valid Directory" #: airtime_mvc/application/forms/AddShowRepeats.php:10 msgid "Link:" @@ -2637,8 +3882,9 @@ msgid "day of the week" msgstr "day of the week" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "Date End:" @@ -2654,78 +3900,10 @@ msgstr "End date must be after start date" msgid "Please select a repeat day" msgstr "Please select a repeat day" -#: airtime_mvc/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Record from Line In?" - -#: airtime_mvc/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Rebroadcast?" - -#: airtime_mvc/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "Background Colour:" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "Text Colour:" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "Current Logo:" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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 "Remove" - -#: airtime_mvc/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "Show Logo:" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -msgstr "Logo Preview:" - -#: 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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -msgid "Name:" -msgstr "Name:" - -#: airtime_mvc/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Untitled Show" - -#: airtime_mvc/application/forms/AddShowWhat.php:36 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "URL:" -msgstr "URL:" - -#: airtime_mvc/application/forms/AddShowWhat.php:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "Genre:" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "Description:" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "Instance Description:" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" +msgstr "Value is required and can't be empty" #: airtime_mvc/application/forms/AddShowWhen.php:16 msgid "'%value%' does not fit the time format 'HH:mm'" @@ -2735,6 +3913,7 @@ msgstr "'%value%' does not fit the time format 'HH:mm'" msgid "Start Time:" msgstr "Start Time:" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "In the Future:" @@ -2743,12 +3922,6 @@ msgstr "In the Future:" msgid "End Time:" msgstr "End Time:" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "Duration:" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "Timezone:" @@ -2766,7 +3939,7 @@ msgid "Cannot modify start date/time of the show that is already started" msgstr "Cannot modify start date/time of the show that is already started" #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "End date/time cannot be in the past" @@ -2782,32 +3955,17 @@ msgstr "Cannot have duration 00h 00m" msgid "Cannot have duration greater than 24h" msgstr "Cannot have duration greater than 24h" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -msgstr "Cannot schedule overlapping shows" - -#: airtime_mvc/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Search Users:" - -#: airtime_mvc/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "DJs:" - #: airtime_mvc/application/forms/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "Username:" #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "Password:" @@ -2828,8 +3986,6 @@ msgstr "Lastname:" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "Email:" @@ -2853,112 +4009,159 @@ msgid "User Type:" msgstr "User Type:" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "Login name is not unique." -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Value is required and can't be empty" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" +msgstr "Use %s Authentication:" -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "Delete All Tracks in Library" +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" +msgstr "Use Custom Authentication:" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "Custom Username" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Custom Password" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" +msgstr "Host:" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "Port:" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "Mount:" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "Username field cannot be empty." + +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "Password field cannot be empty." + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "Station Language" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "Station Timezone" + +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "Public" + +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "Private" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "Date Start:" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" -msgstr "Title:" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" +msgstr "Invalid character entered" -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" -msgstr "Creator:" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" +msgstr "Search Users:" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" -msgstr "Album:" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" +msgstr "DJs:" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" -msgstr "Year:" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" +msgstr "Filter by Show" -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" -msgstr "Label:" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" +msgstr "All My Shows:" -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" -msgstr "Composer:" +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" -msgstr "Conductor:" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" +msgstr "Background Colour:" -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" -msgstr "Mood:" +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" +msgstr "Text Colour:" -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" -msgstr "BPM:" +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" +msgstr "Current Logo:" -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" -msgstr "Copyright:" +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" +msgstr "Show Logo:" -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" -msgstr "ISRC Number:" +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" +msgstr "Logo Preview:" -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" -msgstr "Website:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 +msgid "Day must be specified" +msgstr "Day must be specified" -#: airtime_mvc/application/forms/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" -msgstr "Language:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 +msgid "Time must be specified" +msgstr "Time must be specified" -#: airtime_mvc/application/forms/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" -msgstr "Start Time" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Must wait at least 1 hour to rebroadcast" -#: airtime_mvc/application/forms/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" -msgstr "End Time" +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Untitled Show" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Interface Timezone:" +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "Instance Description:" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "Station Name" @@ -2967,12 +4170,10 @@ msgid "Station Description" msgstr "Station Description" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "Station Logo:" #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "Note: Anything larger than 600x600 will be resized." @@ -2995,94 +4196,83 @@ msgstr "Default Fade In (s):" msgid "Default Fade Out (s):" msgstr "Default Fade Out (s):" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:111 +msgid "Intro Autoloading Playlist" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:123 msgid "Overwrite Podcast Episode Metatags" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:120 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "Disabled" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" -msgstr "Enabled" - -#: airtime_mvc/application/forms/GeneralPreferences.php:111 +#: airtime_mvc/application/forms/GeneralPreferences.php:129 msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:122 +#: airtime_mvc/application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:155 msgid "Public LibreTime API" msgstr "Public LibreTime API" -#: airtime_mvc/application/forms/GeneralPreferences.php:123 +#: airtime_mvc/application/forms/GeneralPreferences.php:156 msgid "Required for embeddable schedule widget." msgstr "Required for embeddable schedule widget." -#: airtime_mvc/application/forms/GeneralPreferences.php:129 +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "Enabling this feature will allow LibreTime to provide schedule data to external widgets that can be embedded in your website." -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "Default Language" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "Station Timezone" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "Week Starts On" -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "Display login button on your Radio Page?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' is no valid email address in the basic format local-part@hostname" +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" +msgstr "Record from Line In?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' does not fit the date format '%format%'" +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" +msgstr "Rebroadcast?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' is less than %min% characters long" +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" +msgstr "Email" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' is more than %max% characters long" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' is not between '%min%' and '%max%', inclusively" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "Passwords do not match" +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" +msgstr "Reset password" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 msgid "Auto Switch Off:" @@ -3126,16 +4316,6 @@ msgstr "" msgid "Show Source Mount:" msgstr "" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "Login" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "Type the characters you see in the picture below." - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3149,25 +4329,97 @@ msgstr "Confirm new password" msgid "Password confirmation does not match your password." msgstr "Password confirmation does not match your password." -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" -msgstr "Email" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "Delete All Tracks in Library" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" -msgstr "Username" +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" +msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Reset password" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" +msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" -msgstr "Back" +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "days" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Enabled:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "Mobile:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "Stream Type:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "Service Type:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "Channels:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "1 - Mono" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "2 - Stereo" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "Server" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "Port" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "URL" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "Mount Point" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "Admin User" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "Admin Password" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "Server cannot be empty." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "Port cannot be empty." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "Mount cannot be empty with Icecast server." + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "Interface Timezone:" #: airtime_mvc/application/forms/Player.php:14 msgid "Now Playing" @@ -3193,280 +4445,54 @@ msgstr " - Mobile friendly" msgid " - The player does not support Opus streams." msgstr " - The player does not support Opus streams." -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "Embeddable code:" - #: airtime_mvc/application/forms/Player.php:72 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "Copy this code and paste it into your website's HTML to embed the player in your site." -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -msgid "Preview:" -msgstr "Preview:" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "Push metadata to your station on TuneIn?" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "Station ID:" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" -msgstr "Public" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "Partner Key:" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" -msgstr "Private" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "Partner Id:" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" -msgstr "Phone:" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" -msgstr "Station Web Site:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' is no valid email address in the basic format local-part@hostname" -#: airtime_mvc/application/forms/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" -msgstr "Country:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' does not fit the date format '%format%'" -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" -msgstr "City:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' is less than %min% characters long" -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" -msgstr "Station Description:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' is more than %max% characters long" -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" -msgstr "Promote my station on %s" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' is not between '%min%' and '%max%', inclusively" -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "By checking this box, I agree to %s's %sprivacy policy%s." - -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "You have to agree to privacy policy." - -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "Station Language" - -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "Filter by Show" - -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "All My Shows:" - -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr "Select criteria" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "Bit Rate (Kbps)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "Description" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "Sample Rate (kHz)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "hours" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "minutes" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "items" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "Randomly" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "Newest" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "Oldest" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "Type:" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "Static" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "Dynamic" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "Allow Repeated Tracks:" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "Sort Tracks:" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "Limit to:" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "Generate playlist content and save criteria" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "Generate" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "Shuffle playlist content" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "Shuffle" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Limit cannot be empty or smaller than 0" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "Limit cannot be more than 24 hrs" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "The value should be an integer" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "500 is the max item limit value you can set" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "You must select Criteria and Modifier" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "'Length' should be in '00:00:00' format" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:597 -msgid "The value has to be numeric" -msgstr "The value has to be numeric" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "The value should be less then 2147483648" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "The value should be less than %s characters" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "Value cannot be empty" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -msgid "Default License:" -msgstr "Default License:" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "All rights are reserved" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -msgid "The work is in the public domain" -msgstr "The work is in the public domain" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Attribution" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -msgid "Creative Commons Attribution Noncommercial" -msgstr "Creative Commons Attribution Noncommercial" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "Creative Commons Attribution No Derivative Works" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -msgid "Creative Commons Attribution Share Alike" -msgstr "Creative Commons Attribution Share Alike" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "Creative Commons Attribution Noncommercial Non Derivate Works" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "Creative Commons Attribution Noncommercial Share Alike" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" -msgstr "Default Sharing Type:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" +msgstr "Passwords do not match" #: airtime_mvc/application/forms/StreamSetting.php:26 msgid "Hardware Audio Output:" @@ -3544,384 +4570,636 @@ msgstr "" msgid "Custom / 3rd Party Streaming" msgstr "Custom / 3rd Party Streaming" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Enabled:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "Mobile:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Stream Type:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "Bit Rate:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Service Type:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Channels:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Mono" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Stereo" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Server" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Port" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "Name" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Mount Point" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Admin User" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Admin Password" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Server cannot be empty." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "Port cannot be empty." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Mount cannot be empty with Icecast server." - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "Push metadata to your station on TuneIn?" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "Station ID:" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "Partner Key:" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "Partner Id:" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "Import Folder:" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "Watched Folders:" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "Not a valid Directory" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "Smart Block" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "Webstream" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "Upload" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "Dashboard" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "Play" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "Stop" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -msgid "Set Cue In" -msgstr "Set Cue In" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -msgid "Set Cue Out" -msgstr "Set Cue Out" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "Cursor" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read on to find out more." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -" is easier than ever." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -" just a click away, you'll be on air and hands-free in no time." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/livestream.phtml:9 -#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2 -msgid "Live stream" -msgstr "Live stream" - -#: airtime_mvc/application/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/DateHelper.php:213 #, php-format -msgid "%1$s copyright © %2$s All rights reserved.If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:493 +msgid "On Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:494 +msgid "Off Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:495 +msgid "Offline" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:179 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "Email could not be sent. Check your mail server settings and ensure it has been configured properly." - -#: airtime_mvc/application/controllers/LoginController.php:183 -msgid "That username or email address could not be found." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "Wrong username or password provided. Please try again." - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "You are viewing an older version of %s" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "You cannot add tracks to dynamic blocks." - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "You don't have permission to delete selected %s(s)." - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "You can only add tracks to smart block." - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "Untitled Playlist" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "Untitled Smart Block" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "Unknown Playlist" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "Preferences updated." - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "Support setting updated." - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "Support Feedback" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "Stream Setting Updated." - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "path should be specified" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "Problem with Liquidsoap..." - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "Rebroadcast of show %s from %s at %s" -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" -msgstr "Select cursor" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" +msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" -msgstr "Remove cursor" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" +msgstr "Record file doesn't exist" -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" -msgstr "show does not exist" +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" +msgstr "View Recorded File Metadata" -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "User added successfully!" +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "" -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "User updated successfully!" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "" -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "Settings updated successfully!" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" +msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Untitled Webstream" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" +msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Webstream saved." +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" +msgstr "Edit Show" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Invalid form values." +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Invalid character entered" +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Day must be specified" +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" +msgstr "Permission denied" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "Time must be specified" +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" +msgstr "Can't drag and drop repeating shows" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Must wait at least 1 hour to rebroadcast" +#: airtime_mvc/application/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "Can't move a past show" + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "Can't move show into past" + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "Cannot schedule overlapping shows" + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Can't move a recorded show less than 1 hour before its rebroadcasts." + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Show was deleted because recorded show does not exist!" + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Must wait 1 hour to rebroadcast." + +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "Track" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "Start Time" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "End Time" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" +msgstr "Played" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" +#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr "Select criteria" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "Bit Rate (Kbps)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "Sample Rate (kHz)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "hours" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "minutes" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "items" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "Dynamic" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "Static" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "Generate playlist content and save criteria" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "Shuffle playlist content" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Limit cannot be empty or smaller than 0" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "Limit cannot be more than 24 hrs" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "The value should be an integer" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "500 is the max item limit value you can set" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "You must select Criteria and Modifier" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "'Length' should be in '00:00:00' format" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "The value has to be numeric" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "The value should be less then 2147483648" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 #, php-format -msgid "Use %s Authentication:" +msgid "The value should be less than %s characters" +msgstr "The value should be less than %s characters" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" +msgstr "Value cannot be empty" + +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "Use Custom Authentication:" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "Custom Username" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Custom Password" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "ISRC Number:" + +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" +msgstr "Import Folder:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "Username field cannot be empty." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" +msgstr "Watched Folders:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "Password field cannot be empty." - -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -msgid "days" -msgstr "days" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" +msgstr "Not a valid Directory" #: airtime_mvc/application/forms/AddShowRepeats.php:10 msgid "Link:" @@ -2636,8 +3881,9 @@ msgid "day of the week" msgstr "day of the week" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "Date End:" @@ -2653,78 +3899,10 @@ msgstr "End date must be after start date" msgid "Please select a repeat day" msgstr "Please select a repeat day" -#: airtime_mvc/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Record from Line In?" - -#: airtime_mvc/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Rebroadcast?" - -#: airtime_mvc/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "Background Color:" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "Text Color:" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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 "Remove" - -#: airtime_mvc/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -msgid "Name:" -msgstr "Name:" - -#: airtime_mvc/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Untitled Show" - -#: airtime_mvc/application/forms/AddShowWhat.php:36 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "URL:" -msgstr "URL:" - -#: airtime_mvc/application/forms/AddShowWhat.php:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "Genre:" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "Description:" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" +msgstr "Value is required and can't be empty" #: airtime_mvc/application/forms/AddShowWhen.php:16 msgid "'%value%' does not fit the time format 'HH:mm'" @@ -2734,6 +3912,7 @@ msgstr "'%value%' does not fit the time format 'HH:mm'" msgid "Start Time:" msgstr "" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "" @@ -2742,12 +3921,6 @@ msgstr "" msgid "End Time:" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "Duration:" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "Timezone:" @@ -2765,7 +3938,7 @@ msgid "Cannot modify start date/time of the show that is already started" msgstr "Cannot modify start date/time of the show that is already started" #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "End date/time cannot be in the past" @@ -2781,32 +3954,17 @@ msgstr "Cannot have duration 00h 00m" msgid "Cannot have duration greater than 24h" msgstr "Cannot have duration greater than 24h" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -msgstr "Cannot schedule overlapping shows" - -#: airtime_mvc/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Search Users:" - -#: airtime_mvc/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "DJs:" - #: airtime_mvc/application/forms/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "Username:" #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "Password:" @@ -2827,8 +3985,6 @@ msgstr "Lastname:" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "Email:" @@ -2852,112 +4008,159 @@ msgid "User Type:" msgstr "User Type:" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "Login name is not unique." -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Value is required and can't be empty" - -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" msgstr "" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" +msgstr "Use Custom Authentication:" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "Custom Username" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Custom Password" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "Username field cannot be empty." + +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "Password field cannot be empty." + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "Station Timezone" + +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "Date Start:" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" -msgstr "Title:" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" +msgstr "Invalid character entered" -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" -msgstr "Creator:" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" +msgstr "Search Users:" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" -msgstr "Album:" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" +msgstr "DJs:" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" -msgstr "Year:" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" -msgstr "Label:" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" +msgstr "All My Shows:" -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" -msgstr "Composer:" +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" -msgstr "Conductor:" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" +msgstr "Background Color:" -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" -msgstr "Mood:" +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" +msgstr "Text Color:" -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" -msgstr "BPM:" +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" -msgstr "Copyright:" +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" -msgstr "ISRC Number:" +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" -msgstr "Website:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 +msgid "Day must be specified" +msgstr "Day must be specified" -#: airtime_mvc/application/forms/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" -msgstr "Language:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 +msgid "Time must be specified" +msgstr "Time must be specified" -#: airtime_mvc/application/forms/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" -msgstr "Start Time" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Must wait at least 1 hour to rebroadcast" -#: airtime_mvc/application/forms/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" -msgstr "End Time" +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Untitled Show" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Interface Timezone:" +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "Station Name" @@ -2966,12 +4169,10 @@ msgid "Station Description" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "Station Logo:" #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "Note: Anything larger than 600x600 will be resized." @@ -2994,94 +4195,83 @@ msgstr "Default Fade In (s):" msgid "Default Fade Out (s):" msgstr "Default Fade Out (s):" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 -msgid "Overwrite Podcast Episode Metatags" +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:120 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "Disabled" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" -msgstr "Enabled" - #: airtime_mvc/application/forms/GeneralPreferences.php:111 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgid "Intro Autoloading Playlist" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public LibreTime API" +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 -msgid "Required for embeddable schedule widget." +msgid "Overwrite Podcast Episode Metatags" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "Station Timezone" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "Week Starts On" -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' is no valid email address in the basic format local-part@hostname" +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" +msgstr "Record from Line In?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' does not fit the date format '%format%'" +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" +msgstr "Rebroadcast?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' is less than %min% characters long" +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" +msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' is more than %max% characters long" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' is not between '%min%' and '%max%', inclusively" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "Passwords do not match" +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" +msgstr "Reset password" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 msgid "Auto Switch Off:" @@ -3125,16 +4315,6 @@ msgstr "" msgid "Show Source Mount:" msgstr "" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "Login" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "Type the characters you see in the picture below." - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3148,26 +4328,98 @@ msgstr "Confirm new password" msgid "Password confirmation does not match your password." msgstr "Password confirmation does not match your password." -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" -msgstr "Username" - -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Reset password" - -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" msgstr "" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "days" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Enabled:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "Stream Type:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "Service Type:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "Channels:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "1 - Mono" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "2 - Stereo" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "Server" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "Port" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "URL" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "Mount Point" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "Admin User" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "Admin Password" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "Server cannot be empty." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "Port cannot be empty." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "Mount cannot be empty with Icecast server." + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "Interface Timezone:" + #: airtime_mvc/application/forms/Player.php:14 msgid "Now Playing" msgstr "Now Playing" @@ -3192,280 +4444,54 @@ msgstr "" msgid " - The player does not support Opus streams." msgstr "" -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - #: airtime_mvc/application/forms/Player.php:72 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -msgid "Preview:" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" -msgstr "Phone:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" -msgstr "Station Web Site:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" -msgstr "Country:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" -msgstr "City:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" -msgstr "Station Description:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' is no valid email address in the basic format local-part@hostname" -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "You have to agree to privacy policy." +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' does not fit the date format '%format%'" -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' is less than %min% characters long" -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' is more than %max% characters long" -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "All My Shows:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' is not between '%min%' and '%max%', inclusively" -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr "Select criteria" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "Bit Rate (Kbps)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "Description" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "Sample Rate (kHz)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "hours" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "minutes" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "items" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "Static" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "Dynamic" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "Generate playlist content and save criteria" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "Generate" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "Shuffle playlist content" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "Shuffle" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Limit cannot be empty or smaller than 0" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "Limit cannot be more than 24 hrs" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "The value should be an integer" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "500 is the max item limit value you can set" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "You must select Criteria and Modifier" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "'Length' should be in '00:00:00' format" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:597 -msgid "The value has to be numeric" -msgstr "The value has to be numeric" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "The value should be less then 2147483648" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "The value should be less than %s characters" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "Value cannot be empty" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -msgid "Default License:" -msgstr "Default License:" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "All rights are reserved" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -msgid "The work is in the public domain" -msgstr "The work is in the public domain" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Attribution" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -msgid "Creative Commons Attribution Noncommercial" -msgstr "Creative Commons Attribution Noncommercial" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "Creative Commons Attribution No Derivative Works" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -msgid "Creative Commons Attribution Share Alike" -msgstr "Creative Commons Attribution Share Alike" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "Creative Commons Attribution Noncommercial Non Derivate Works" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "Creative Commons Attribution Noncommercial Share Alike" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" +msgstr "Passwords do not match" #: airtime_mvc/application/forms/StreamSetting.php:26 msgid "Hardware Audio Output:" @@ -3543,381 +4569,636 @@ msgstr "" msgid "Custom / 3rd Party Streaming" msgstr "" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Enabled:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Stream Type:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "Bit Rate:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Service Type:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Channels:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Mono" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Stereo" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Server" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Port" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "Name" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Mount Point" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Admin User" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Admin Password" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Server cannot be empty." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "Port cannot be empty." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Mount cannot be empty with Icecast server." - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "Import Folder:" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "Watched Folders:" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "Not a valid Directory" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "Play" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "Stop" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -msgid "Set Cue In" -msgstr "Set Cue In" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -msgid "Set Cue Out" -msgstr "Set Cue Out" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "Cursor" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read on to find out more." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -" is easier than ever." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -" just a click away, you'll be on air and hands-free in no time." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/livestream.phtml:9 -#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2 -msgid "Live stream" -msgstr "Live stream" - -#: airtime_mvc/application/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/DateHelper.php:213 #, php-format -msgid "%1$s copyright © %2$s All rights reserved.If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:493 +msgid "On Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:494 +msgid "Off Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:495 +msgid "Offline" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "Nada programado" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "Por favor, introduce tu nombre de usuario y contraseña" +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." +msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:179 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "No fue posible enviar el correo electrónico. Revisa tu configuración de correo y asegúrate de que sea correcta." - -#: airtime_mvc/application/controllers/LoginController.php:183 -msgid "That username or email address could not be found." -msgstr "Ese usuario o dirección de correo electrónico no se pudo encontrar" - -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "Hubo un problema con el nombre de usuario o la dirección de correo electrónico que escribiste." - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "El usuario o la contraseña son incorrectos. Por favor intenta de nuevo." - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "Estas viendo una versión antigua de %s" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "No puedes añadir pistas a los bloques dinámicos." - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "No tienes permiso para eliminar los %s(s) seleccionados." - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "Solo puedes añadir pistas a los bloques inteligentes." - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "Lista de reproducción sin nombre" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "Bloque inteligente sin nombre" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "Lista de reproducción desconocida" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "Se actualizaron las preferencias." - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "Se actualizaron las configuraciones de soporte." - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "Opinión de soporte" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "Se actualizaron las configuraciones del stream." - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "se debe especificar la ruta" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "Hay un problema con Liquidsoap..." - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "Método de solicitud no aceptado" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "Retransmitir el show %s de %s a %s " -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" -msgstr "Elegir cursor" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" +msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" -msgstr "Eliminar cursor" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" +msgstr "No existe el archivo" -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" -msgstr "El show no existe" +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" +msgstr "Ver los metadatos del archivo grabado" -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "¡Usuario añadido correctamente!" +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "Programar pistas" -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "¡Usuario actualizado correctamente!" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "Vaciar Show" -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "¡Configuración actualizada correctamente!" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" +msgstr "Cancelar Show" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Webstream sin título" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" +msgstr "Editar instancia" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Se almacenó el webstream" +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" +msgstr "Editar Show" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Los valores en el formulario son inválidos." +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" +msgstr "Eliminar instancia" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Se introdujo un caracter inválido" +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" +msgstr "Eliminar instancia y todas las siguientes" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Se debe especificar un día" +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" +msgstr "Permiso denegado" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "Se debe especificar una hora" +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" +msgstr "No es posible arrastrar y soltar shows que se repiten" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Debes esperar al menos 1 hora para reprogramar" +#: airtime_mvc/application/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "No se puede mover un show pasado" + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "No se puede mover un show al pasado" + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "No se pueden programar shows traslapados" + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "No se puede mover un show grabado a menos de 1 hora antes de su retransmisión." + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "¡El show se eliminó porque el show grabado no existe!" + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Debe esperar 1 hora para retransmitir." + +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "Pista" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "Hora de Inicio" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "Hora de Finalización" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" +msgstr "Reproducido" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "¿Programar Lista Auto-Cargada?" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "Se le agrega los contenidos de las listas auto-cargadas a programas una hora antes de que suenen. Mas información" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "Seleccionar Lista" @@ -2559,47 +3610,240 @@ msgstr "Seleccionar Lista" msgid "Repeat Playlist Until Show is Full ?" msgstr "Repitir lista hasta que termine el programa?" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 -#, php-format -msgid "Use %s Authentication:" -msgstr "Usar la autenticación %s:" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr "Seleccionar criterio" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "Usar la autenticación personalizada:" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "Tasa de bits (Kbps)" -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "Usuario personalizado" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "Tasa de muestreo (kHz)" -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Contraseña personalizada" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" -msgstr "Puerto:" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "Montaje:" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "El campo de usuario no puede estar vacío." +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "El campo de contraseña no puede estar vacío." +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -msgid "days" -msgstr "días" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "horas" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "minutos" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "elementos" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "Aleatorio" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "Más nuevo" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "Más antiguo" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "Tipo:" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "Dinámico" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "Estático" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "Permitir Pistas Repetidas:" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "Ordenar Pistas:" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "Limitar a:" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "Generar contenido para la lista de reproducción y guardar criterios" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "Reproducir de forma aleatoria los contenidos de la lista de reproducción" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "El límite no puede estar vacío o ser menor que 0" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "El límite no puede ser mayor a 24 horas" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "El valor debe ser un número entero" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "500 es el valor máximo de ítems que se pueden configurar" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "Debes elegir Criterios y Modificador" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "'Length' (la duración) debe establecerse e un formato de '00:00:00' " + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "El valor debe estar en un formato de tiempo (e.g. 0000-00-00 or 0000-00-00 00:00:00)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "El valor debe ser numérico" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "El valor debe ser menor a 2147483648" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 +#, php-format +msgid "The value should be less than %s characters" +msgstr "El valor debe ser menor que %s caracteres" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" +msgstr "El valor no puede estar vacío" + +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" +msgstr "" + +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" +msgstr "" + +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "Número ISRC:" + +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." +msgstr "Publicar..." + +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" +msgstr "Carpeta de importación:" + +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" +msgstr "Carpetas monitorizadas:" + +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" +msgstr "No es un directorio válido" #: airtime_mvc/application/forms/AddShowRepeats.php:10 msgid "Link:" @@ -2646,8 +3890,9 @@ msgid "day of the week" msgstr "día de la semana" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "Fecha de Finalización:" @@ -2663,78 +3908,10 @@ msgstr "La fecha de finalización debe ser posterior a la inicio" msgid "Please select a repeat day" msgstr "Por favor, selecciona un día de repeticón" -#: airtime_mvc/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "¿Grabar desde la entrada (line in)?" - -#: airtime_mvc/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "¿Reprogramar?" - -#: airtime_mvc/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "Color de fondo:" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "Color del texto:" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "Loco actual:" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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 "Eliminar" - -#: airtime_mvc/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "Logo del Show:" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -msgstr "Vista previa del Logo:" - -#: 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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -msgid "Name:" -msgstr "Nombre:" - -#: airtime_mvc/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Show sin nombre" - -#: airtime_mvc/application/forms/AddShowWhat.php:36 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "URL:" -msgstr "URL:" - -#: airtime_mvc/application/forms/AddShowWhat.php:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "Género:" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "Descripción:" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "Descripcin de instancia:" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" +msgstr "El valor es necesario y no puede estar vacío" #: airtime_mvc/application/forms/AddShowWhen.php:16 msgid "'%value%' does not fit the time format 'HH:mm'" @@ -2744,6 +3921,7 @@ msgstr "'%value%' no concuerda con el formato de tiempo 'HH:mm'" msgid "Start Time:" msgstr "Hora de inicio:" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "En el Futuro:" @@ -2752,12 +3930,6 @@ msgstr "En el Futuro:" msgid "End Time:" msgstr "Hora de fin:" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "Duración:" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "Zona horaria:" @@ -2775,7 +3947,7 @@ msgid "Cannot modify start date/time of the show that is already started" msgstr "No puedes modificar la hora/fecha de inicio de un show que ya empezó" #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "La fecha/hora de finalización no puede estar en el pasado." @@ -2791,32 +3963,17 @@ msgstr "No puede tener una duración 00h 00m" msgid "Cannot have duration greater than 24h" msgstr "No puede tener una duración mayor a 24 horas" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -msgstr "No se pueden programar shows traslapados" - -#: airtime_mvc/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Buscar usuarios:" - -#: airtime_mvc/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "DJs:" - #: airtime_mvc/application/forms/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "Usuario:" #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "Contraseña:" @@ -2837,8 +3994,6 @@ msgstr "Apellido:" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "" @@ -2862,112 +4017,159 @@ msgid "User Type:" msgstr "Tipo de usuario:" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "El nombre de usuario no es único." -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "El valor es necesario y no puede estar vacío" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" +msgstr "Usar la autenticación %s:" -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "Eliminar todas las pistas de la biblioteca" +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" +msgstr "Usar la autenticación personalizada:" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "Usuario personalizado" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Contraseña personalizada" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "Puerto:" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "Montaje:" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "El campo de usuario no puede estar vacío." + +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "El campo de contraseña no puede estar vacío." + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "Idioma de la Estación" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "Zona horaria de la Estación" + +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "Privacidad del Feed" + +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "Público" + +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "Privado" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "Fecha de Inicio:" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" -msgstr "Título:" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" +msgstr "Se introdujo un caracter inválido" -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" -msgstr "Creador:" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" +msgstr "Buscar usuarios:" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" -msgstr "Álbum:" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" +msgstr "DJs:" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" -msgstr "Año:" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" +msgstr "Filtrar por Show" -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" -msgstr "Sello:" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" +msgstr "Todos mis shows:" -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" -msgstr "Compositor:" +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" +msgstr "Mis Shows" -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" -msgstr "Conductor:" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" +msgstr "Color de fondo:" -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" -msgstr "Ánimo (mood):" +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" +msgstr "Color del texto:" -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" -msgstr "BPM:" +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" +msgstr "Loco actual:" -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" -msgstr "Derechos de autor:" +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" +msgstr "Logo del Show:" -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" -msgstr "Número ISRC:" +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" +msgstr "Vista previa del Logo:" -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" -msgstr "Sitio web:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 +msgid "Day must be specified" +msgstr "Se debe especificar un día" -#: airtime_mvc/application/forms/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" -msgstr "Idioma:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 +msgid "Time must be specified" +msgstr "Se debe especificar una hora" -#: airtime_mvc/application/forms/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" -msgstr "Hora de Inicio" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Debes esperar al menos 1 hora para reprogramar" -#: airtime_mvc/application/forms/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" -msgstr "Hora de Finalización" +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Show sin nombre" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Zona horaria de la interfaz:" +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "Descripcin de instancia:" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "Nombre de la estación" @@ -2976,12 +4178,10 @@ msgid "Station Description" msgstr "Descripción de la estación" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "Logo de la estación:" #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "Nota: Cualquiera mayor que 600x600 será redimensionada." @@ -3004,41 +4204,43 @@ msgstr "Fade In perdeterminado (s):" msgid "Default Fade Out (s):" msgstr "Fade Out preseterminado (s):" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:111 +msgid "Intro Autoloading Playlist" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:123 msgid "Overwrite Podcast Episode Metatags" msgstr "Sobrescribir el álbum del podcast" -#: airtime_mvc/application/forms/GeneralPreferences.php:120 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "Desactivado" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" -msgstr "Activado" - -#: airtime_mvc/application/forms/GeneralPreferences.php:111 +#: airtime_mvc/application/forms/GeneralPreferences.php:129 msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." msgstr "Habilitar esto significa que las pistas del podcast siempre contendrán el nombre del podcast en su campo de álbum." -#: airtime_mvc/application/forms/GeneralPreferences.php:122 +#: airtime_mvc/application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:155 msgid "Public LibreTime API" msgstr "API Pública de Libretime" -#: airtime_mvc/application/forms/GeneralPreferences.php:123 +#: airtime_mvc/application/forms/GeneralPreferences.php:156 msgid "Required for embeddable schedule widget." msgstr "Requerido para el widget de programación incrustado" -#: airtime_mvc/application/forms/GeneralPreferences.php:129 +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." @@ -3046,54 +4248,41 @@ msgstr "" "Habilitar esta función permite a Libretime proporcionar datos de programación\n" " a widgets externos que se pueden integrar en tu sitio web." -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "URL CORS permitidas" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "URL remotas a las que se les permite acceder a esta instancia de LibreTime en un navegador. Una URL por línea." -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "Idioma predeterminado" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "Zona horaria de la Estación" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "La semana empieza el" -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "¿Mostrar el botón de inicio de sesión en su página de radio?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' no es una dirección de correo electrónico válida en el formato básico local-part@hostname" +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" +msgstr "¿Grabar desde la entrada (line in)?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' no se ajusta al formato de fecha '%format%'" +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" +msgstr "¿Reprogramar?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' tiene menos de %min% caracteres" +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" +msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' tiene más de %max% caracteres" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' no está entre '%min%' y '%max%', inclusive" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "Las contraseñas no coinciden" +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" +msgstr "Restablecer contraseña" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 msgid "Auto Switch Off:" @@ -3137,16 +4326,6 @@ msgstr "Puerto Fuente del Show:" msgid "Show Source Mount:" msgstr "Montaje Fuente del Show:" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "Iniciar sesión" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "Escribe los caracteres que ves en la imagen que aparece a continuación." - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3160,25 +4339,97 @@ msgstr "Confirma nueva contraseña" msgid "Password confirmation does not match your password." msgstr "La confirmación de la contraseña no coincide con tu contraseña." -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "Eliminar todas las pistas de la biblioteca" + +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" -msgstr "Usuario" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" +msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Restablecer contraseña" +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" -msgstr "Atrás" +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "días" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Activado:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "Móvil:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "Tipo de stream:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "Tipo de servicio:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "Canales:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "1 - Mono" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "2 - Estéreo" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "Servidor" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "Puerto" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "URL" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "Punto de montaje" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "Usuario administrativo" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "Contraseña administrativa" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "El servidor no puede estar vacío." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "El puerto no puede estar vacío." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "El montaje no puede estar vacío con el servidor Icecast." + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "Zona horaria de la interfaz:" #: airtime_mvc/application/forms/Player.php:14 msgid "Now Playing" @@ -3204,280 +4455,54 @@ msgstr "" msgid " - The player does not support Opus streams." msgstr " - El reproductor no soporta streams Opus." -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "Código embebible" - #: airtime_mvc/application/forms/Player.php:72 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "Copia este código y pégalo en el HTML de tu sitio web para incrustar el reproductor en tu sitio." -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -msgid "Preview:" -msgstr "Vista previa:" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "¿Actualizar metadatos de tu estación en TuneIn?" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "Privacidad del Feed" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "ID Estación:" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" -msgstr "Público" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "Clave Socio:" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" -msgstr "Privado" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "Id Socio:" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" -msgstr "Teléfono:" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "Configuración TuneIn inválida. Asegúrarte de que los ajustes de TuneIn sean correctos y vuelve a intentarlo." -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" -msgstr "Sitio web de la estación:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' no es una dirección de correo electrónico válida en el formato básico local-part@hostname" -#: airtime_mvc/application/forms/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" -msgstr "País:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' no se ajusta al formato de fecha '%format%'" -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" -msgstr "Ciudad:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' tiene menos de %min% caracteres" -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" -msgstr "Descripción de la estación:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' tiene más de %max% caracteres" -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" -msgstr "Promocionar mi estacin en %s" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' no está entre '%min%' y '%max%', inclusive" -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "Al marcar esta casilla, estoy de acuerdo con %s %spolítica de privacidad%s." - -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "Debes aceptar las políticas de privacidad." - -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "Idioma de la Estación" - -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "Filtrar por Show" - -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "Todos mis shows:" - -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "Mis Shows" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr "Seleccionar criterio" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "Tasa de bits (Kbps)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "Descripción" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "Tasa de muestreo (kHz)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "horas" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "minutos" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "elementos" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "Aleatorio" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "Más nuevo" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "Más antiguo" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "Tipo:" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "Estático" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "Dinámico" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "Permitir Pistas Repetidas:" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "Ordenar Pistas:" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "Limitar a:" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "Generar contenido para la lista de reproducción y guardar criterios" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "Generar" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "Reproducir de forma aleatoria los contenidos de la lista de reproducción" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "Reproducción aleatoria" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "El límite no puede estar vacío o ser menor que 0" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "El límite no puede ser mayor a 24 horas" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "El valor debe ser un número entero" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "500 es el valor máximo de ítems que se pueden configurar" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "Debes elegir Criterios y Modificador" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "'Length' (la duración) debe establecerse e un formato de '00:00:00' " - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "El valor debe estar en un formato de tiempo (e.g. 0000-00-00 or 0000-00-00 00:00:00)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:597 -msgid "The value has to be numeric" -msgstr "El valor debe ser numérico" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "El valor debe ser menor a 2147483648" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "El valor debe ser menor que %s caracteres" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "El valor no puede estar vacío" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -msgid "Default License:" -msgstr "Licencia por defecto:" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "Todos los derechos reservados" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -msgid "The work is in the public domain" -msgstr "El trabajo es de dominio público" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -msgid "Creative Commons Attribution" -msgstr "Atribución Creative Commons" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -msgid "Creative Commons Attribution Noncommercial" -msgstr "Atribución-NoComercial Creative Commons" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "Atribución-sinDerivadas Creative Commons" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -msgid "Creative Commons Attribution Share Alike" -msgstr "Atribución-CompartirIgual Creative Commons" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "Atribución-NoComercial-SinDerivadas Creative Commons" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "Atribución-NoComercial-CompartirIgual Creative Commons" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" -msgstr "Tipo de Compartir predeterminada" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" +msgstr "Las contraseñas no coinciden" #: airtime_mvc/application/forms/StreamSetting.php:26 msgid "Hardware Audio Output:" @@ -3555,399 +4580,638 @@ msgstr "Streaming por defecto" msgid "Custom / 3rd Party Streaming" msgstr "Transmisión personalizada / de terceros" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Activado:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "Móvil:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Tipo de stream:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "Tasa de bits:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Tipo de servicio:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Canales:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Mono" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Estéreo" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Servidor" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Puerto" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "Nombre" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Punto de montaje" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Usuario administrativo" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Contraseña administrativa" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "El servidor no puede estar vacío." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "El puerto no puede estar vacío." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "El montaje no puede estar vacío con el servidor Icecast." - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "¿Actualizar metadatos de tu estación en TuneIn?" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "ID Estación:" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "Clave Socio:" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "Id Socio:" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "Configuración TuneIn inválida. Asegúrarte de que los ajustes de TuneIn sean correctos y vuelve a intentarlo." - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "Carpeta de importación:" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "Carpetas monitorizadas:" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "No es un directorio válido" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "Bloque Inteligente" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "Subir" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -msgid "Set Cue In" -msgstr "Establecer Cue In" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -msgid "Set Cue Out" -msgstr "Establecer Cue Out" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "¡Airtime Pro has a new look!" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read on to find out more." -msgstr "" -"Tus funciones favoritas son ahora aún más fáciles de usar - ¡e incluso hemos\n" -" añadido algunas nuevas! Echa un vistazo al video de arriba o sigue leyendo para obtener más información." - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -" is easier than ever." -msgstr "" -"Nuestra nueva vista Dashboard tiene ahora una poderosa interfaz de edición por pestañas, por lo que la actualización de tus pistas y listas de reproducción\n" -" es más sencillo que nunca." - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -" just a click away, you'll be on air and hands-free in no time." -msgstr "" -"Hemos simplificado la interfaz de Airtime para facilitar la navegación. Con las herramientas más importantes\n" -" a un clic de distancia, estarás en el aire y manos libres en un momento." - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -msgstr "¿Tienes una biblioteca de música enorme? ¡No hay problema! Con la nueva página de Subida, puedes arrastrar carpetas enteras a nuestra nube privada." - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "" -"El nuevo Airtime es más suave, elegante y rápido, ¡incluso en más dispositivos! Estamos comprometidos a mejorar la experiencia\n" -" con Airtime, sin importar cómo te conectes." - -#: airtime_mvc/application/layouts/scripts/livestream.phtml:9 -#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2 -msgid "Live stream" -msgstr "Stream en directo" - -#: airtime_mvc/application/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/DateHelper.php:213 #, php-format -msgid "%1$s copyright © %2$s All rights reserved.If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:493 msgid "On Air" msgstr "À l'antenne" -#: airtime_mvc/application/controllers/LocaleController.php:435 +#: airtime_mvc/application/controllers/LocaleController.php:494 msgid "Off Air" msgstr "Hors antenne" -#: airtime_mvc/application/controllers/LocaleController.php:436 +#: airtime_mvc/application/controllers/LocaleController.php:495 msgid "Offline" msgstr "Éteint" -#: airtime_mvc/application/controllers/LocaleController.php:437 +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "Aucun programme" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "Veuillez entrer vos identifiants." +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." +msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:179 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "Le courriel n'a pas pu être envoyé. Vérifiez les paramètres du serveur de messagerie et assurez vous qu'il a été correctement configuré." - -#: airtime_mvc/application/controllers/LoginController.php:183 -msgid "That username or email address could not be found." -msgstr "Cet identifiant ou adresse mail n'a pu être trouvé." - -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "Il y a un problème avec l'identifiant ou adresse mail que vous avez entré." - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "Mauvais nom d'utilisateur ou mot de passe fourni. S'il vous plaît essayez de nouveau." - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "Vous visualisez l'ancienne version de %s" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Vous ne pouvez pas ajouter de pistes aux blocs dynamiques." - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Vous n'avez pas la permission de supprimer la sélection %s(s)." - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "Vous pouvez seulement ajouter des pistes au bloc intelligent." - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "Liste de lecture Sans Titre" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "Bloc intelligent Sans Titre" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "Liste de lecture inconnue" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "Préférences mises à jour." - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "Réglages du Support mis à jour." - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "Remarques au support" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "Réglages du Flux mis à jour." - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "le chemin doit être spécifié" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "Problème avec Liquidsoap..." - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "Cette méthode de requête ne peut aboutir" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "Rediffusion de l'émission %s de %s à %s" -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" -msgstr "Sélectionner le Curseur" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" +msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" -msgstr "Enlever le Curseur" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" +msgstr "L'enregistrement du fichier n'existe pas" -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" -msgstr "l'émission n'existe pas" +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" +msgstr "Afficher les métadonnées du fichier enregistré" -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "Utilisateur ajouté avec succès!" +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "Ajouter des pistes" -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "Utilisateur mis à jour avec succès!" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "Vider le contenu de l'émission" -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "Paramètres mis à jour avec succès!" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" +msgstr "Annuler l'émission" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Flux Web sans Titre" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" +msgstr "Modifier cet élément" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Flux Web sauvegardé." +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" +msgstr "Édition de l'émission" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Valeurs du formulaire non valides." +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" +msgstr "Supprimer cet élément" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Caractère Invalide saisi" +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" +msgstr "Supprimer cet élément et tous les suivants" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Le Jour doit être spécifié" +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" +msgstr "Permission refusée" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "La durée doit être spécifiée" +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" +msgstr "Vous ne pouvez pas glisser et déposer des émissions programmées plusieurs fois" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Vous devez attendre au moins 1 heure pour retransmettre" +#: airtime_mvc/application/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "Impossible de déplacer une émission déjà diffusée" + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "Impossible de déplacer une émission dans le passé" + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "Ne peux pas programmer des émissions qui se chevauchent" + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Impossible de déplacer une émission enregistrée à moins d'1 heure de ses rediffusions." + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "L'émission a été effacée parce que l'enregistrement de l'émission n'existe pas!" + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Doit attendre 1 heure pour retransmettre." + +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "Piste" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "Heure de Début" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "Heure de Fin" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" +msgstr "Joué" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "Ajouter une playlist automatique ?" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "Le contenu des playlists automatiques est ajouté aux émissions une heure avant leur départ. Plus d'informations" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "Sélectionner la playlist" @@ -2579,47 +3602,240 @@ msgstr "Sélectionner la playlist" msgid "Repeat Playlist Until Show is Full ?" msgstr "Répéter la playlist jusqu'à ce que l'émission soit pleine ?" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr "Selectionner le critère" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "Taux d'Echantillonage (Kbps)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "Taux d'Echantillonage (Khz)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "heures" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "minutes" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "éléments" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "Aléatoirement" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "Plus récent" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "Plus vieux" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "Type:" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "Dynamique" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "Statique" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "Autoriser la répétition de pistes:" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "Autoriser la dernière piste à dépasser l'horaire:" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "Trier les pistes:" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "Limiter à:" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "Génération de la liste de lecture et sauvegarde des crières" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "Contenu de la liste de lecture alèatoire" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "La Limite ne peut être vide ou plus petite que 0" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "La Limite ne peut être supérieure à 24 heures" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "La valeur doit être un entier" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "500 est la valeur maximale de l'élément que vous pouvez définir" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "Vous devez sélectionner Critères et Modification" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "La 'Durée' doit être au format '00:00:00'" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "La valeur doit être en format d'horodatage (par exemple 0000-00-00 ou 0000-00-00 00:00:00)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "La valeur doit être numérique" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "La valeur doit être inférieure à 2147483648" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 #, php-format -msgid "Use %s Authentication:" -msgstr "Utilisez l'authentification %s :" +msgid "The value should be less than %s characters" +msgstr "La valeur doit être inférieure à %s caractères" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "Utiliser l'authentification personnalisée:" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" +msgstr "La Valeur ne peut pas être vide" -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "Nom d'utilisateur personnalisé" +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Mot de Passe personnalisé" +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" -msgstr "Hôte:" +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "Numéro ISRC:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" -msgstr "Port:" +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." +msgstr "Publier..." -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "Point de Montage:" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" +msgstr "Répertoire d'importation:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "Le champ Nom d'Utilisateur ne peut pas être vide." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" +msgstr "Répertoires Suveillés:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "Le champ Mot de Passe ne peut être vide." - -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -msgid "days" -msgstr "jours" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" +msgstr "N'est pas un Répertoire valide" #: airtime_mvc/application/forms/AddShowRepeats.php:10 msgid "Link:" @@ -2666,8 +3882,9 @@ msgid "day of the week" msgstr "jour de la semaine" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "Date de Fin:" @@ -2683,78 +3900,10 @@ msgstr "La Date de Fin doit être postérieure à la Date de Début" msgid "Please select a repeat day" msgstr "Veuillez sélectionner un jour de répétition" -#: airtime_mvc/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Enregistrer à partir de 'Line In'?" - -#: airtime_mvc/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Rediffusion?" - -#: airtime_mvc/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "Couleur de Fond:" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "Couleur du Texte:" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "Logo actuel:" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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 "Enlever" - -#: airtime_mvc/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "Montrer le logo:" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -msgstr "Prévisualisation du logo:" - -#: 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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -msgid "Name:" -msgstr "Nom:" - -#: airtime_mvc/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Émission sans Titre" - -#: airtime_mvc/application/forms/AddShowWhat.php:36 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "URL:" -msgstr "URL:" - -#: airtime_mvc/application/forms/AddShowWhat.php:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "Genre:" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "Description:" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "Description de l'élément:" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" +msgstr "Une valeur est requise, ne peut pas être vide" #: airtime_mvc/application/forms/AddShowWhen.php:16 msgid "'%value%' does not fit the time format 'HH:mm'" @@ -2764,6 +3913,7 @@ msgstr "'%value%' ne correspond pas au format de durée 'HH:mm'" msgid "Start Time:" msgstr "Heure de début:" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "À venir:" @@ -2772,12 +3922,6 @@ msgstr "À venir:" msgid "End Time:" msgstr "Temps de fin:" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "Durée:" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "Fuseau horaire:" @@ -2795,7 +3939,7 @@ msgid "Cannot modify start date/time of the show that is already started" msgstr "Vous ne pouvez pas modifier la date / heure de début de l'émission qui a déjà commencé" #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "La date/heure de Fin ne peut être dans le passé" @@ -2811,32 +3955,17 @@ msgstr "Ne peut pas avoir une durée de 00h 00m" msgid "Cannot have duration greater than 24h" msgstr "Ne peut pas avoir une durée supérieure à 24h" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -msgstr "Ne peux pas programmer des émissions qui se chevauchent" - -#: airtime_mvc/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Recherche d'utilisateurs:" - -#: airtime_mvc/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "DJs:" - #: airtime_mvc/application/forms/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "Utilisateur:" #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "Mot de Passe:" @@ -2857,8 +3986,6 @@ msgstr "Nom:" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "Courriel:" @@ -2882,156 +4009,159 @@ msgid "User Type:" msgstr "Type d'utilisateur:" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "Le Nom de connexion n'est pas unique." -#: airtime_mvc/application/forms/BillingClient.php:125 -msgid "What is the name of your favorite childhood friend?" -msgstr "Quel est le nom de votre meilleur ami d'enfance ?" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" +msgstr "Utilisez l'authentification %s :" -#: airtime_mvc/application/forms/BillingClient.php:126 -msgid "What school did you attend for sixth grade?" -msgstr "Où étiez-vous au collège ?" +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" +msgstr "Utiliser l'authentification personnalisée:" -#: airtime_mvc/application/forms/BillingClient.php:127 -msgid "In what city did you meet your spouse/significant other?" -msgstr "Dans quelle ville avez-vous rencontré votre compagnon(ne) ?" +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "Nom d'utilisateur personnalisé" -#: airtime_mvc/application/forms/BillingClient.php:128 -msgid "What street did you live on in third grade?" -msgstr "Dans quelle rue viviez-vous en classe de CE2 ?" +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Mot de Passe personnalisé" -#: airtime_mvc/application/forms/BillingClient.php:129 -msgid "What is the first name of the boy or girl that you first kissed?" -msgstr "Comment s'appelait la première personne que vous avez embrassé ?" +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" +msgstr "Hôte:" -#: airtime_mvc/application/forms/BillingClient.php:130 -msgid "In what city or town was your first job?" -msgstr "Dans quelle ville ou village avez-vous eu votre premier travail ?" +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "Port:" -#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:19 -msgid "Plan type:" -msgstr "Type de plan:" +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "Point de Montage:" -#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:31 -msgid "Billing cycle:" -msgstr "Facturation:" +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "Le champ Nom d'Utilisateur ne peut pas être vide." -#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:39 -msgid "Payment method:" -msgstr "Méthode de paiement:" +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "Le champ Mot de Passe ne peut être vide." -#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:42 -msgid "PayPal" -msgstr "PayPal" +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "Langage de la station" -#: airtime_mvc/application/forms/BillingUpgradeDowngrade.php:43 -msgid "Credit Card via 2Checkout" -msgstr "Carte de crédit via 2Checkout" +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "Fuseau horaire de la Station" -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Une valeur est requise, ne peut pas être vide" +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "Feed Privacy" -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "Supprimer toutes les pistes de la librairie" +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "Publique" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "Privé" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "Date de Début:" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" -msgstr "Titre:" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" +msgstr "Caractère Invalide saisi" -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" -msgstr "Créateur:" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" +msgstr "Recherche d'utilisateurs:" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" -msgstr "Album:" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" +msgstr "DJs:" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" -msgstr "Année:" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" +msgstr "Filtrer par émissions" -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" -msgstr "Label:" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" +msgstr "Toutes mes émissions:" -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" -msgstr "Compositeur:" +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" +msgstr "Mes émissions" -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" -msgstr "Conducteur:" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" +msgstr "Couleur de Fond:" -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" -msgstr "Atmosphère:" +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" +msgstr "Couleur du Texte:" -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" -msgstr "BPM:" +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" +msgstr "Logo actuel:" -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" -msgstr "Copyright:" +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" +msgstr "Montrer le logo:" -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" -msgstr "Numéro ISRC:" +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" +msgstr "Prévisualisation du logo:" -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" -msgstr "Site Internet:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 +msgid "Day must be specified" +msgstr "Le Jour doit être spécifié" -#: airtime_mvc/application/forms/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" -msgstr "Langue:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 +msgid "Time must be specified" +msgstr "La durée doit être spécifiée" -#: airtime_mvc/application/forms/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" -msgstr "Heure de Début" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Vous devez attendre au moins 1 heure pour retransmettre" -#: airtime_mvc/application/forms/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" -msgstr "Heure de Fin" +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Émission sans Titre" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Fuseau horaire de l'interface:" +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "Description de l'élément:" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "Nom de la Station" @@ -3040,12 +4170,10 @@ msgid "Station Description" msgstr "Description de la station" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "Logo de la Station:" #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "Remarque: Tout ce qui est plus grand que 600x600 sera redimensionné." @@ -3068,41 +4196,43 @@ msgstr "Fondu en Entrée par défaut (s):" msgid "Default Fade Out (s):" msgstr "Fondu en Sorti par défaut (s):" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:111 +msgid "Intro Autoloading Playlist" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:123 msgid "Overwrite Podcast Episode Metatags" msgstr "Remplacer les metatags de l'épisode" -#: airtime_mvc/application/forms/GeneralPreferences.php:120 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "Générer un bloc intelligent et une playlist à la création d'un nouveau podcast" - -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "Si cette option est activée, un nouveau bloc intelligent et une playlist correspondant à la dernière piste d'un podcast seront générés immédiatement lors de la création d'un nouveau podcast. Notez que la fonctionnalité \"Remplacer les métatags de l'épisode\" doit aussi être activée pour que les blocs intelligent puissent trouver des épisodes correctement." - -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "Désactivé" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" -msgstr "Activé" - -#: airtime_mvc/application/forms/GeneralPreferences.php:111 +#: airtime_mvc/application/forms/GeneralPreferences.php:129 msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." msgstr "Activer cette fonctionnalité fera que les métatags Artiste, Titre et Album de tous épisodes du podcast seront inscris à partir des valeur par défaut du podcast. Cette fonction est recommandée afin de programmer correctement les épisodes via les blocs intelligents." -#: airtime_mvc/application/forms/GeneralPreferences.php:122 +#: airtime_mvc/application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "Générer un bloc intelligent et une playlist à la création d'un nouveau podcast" + +#: airtime_mvc/application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "Si cette option est activée, un nouveau bloc intelligent et une playlist correspondant à la dernière piste d'un podcast seront générés immédiatement lors de la création d'un nouveau podcast. Notez que la fonctionnalité \"Remplacer les métatags de l'épisode\" doit aussi être activée pour que les blocs intelligent puissent trouver des épisodes correctement." + +#: airtime_mvc/application/forms/GeneralPreferences.php:155 msgid "Public LibreTime API" msgstr "API publique LibreTime" -#: airtime_mvc/application/forms/GeneralPreferences.php:123 +#: airtime_mvc/application/forms/GeneralPreferences.php:156 msgid "Required for embeddable schedule widget." msgstr "Requis pour le widget de programmation." -#: airtime_mvc/application/forms/GeneralPreferences.php:129 +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." @@ -3110,54 +4240,41 @@ msgstr "" "L'activation de cette fonctionnalité permettra à LibreTime de fournir des données de planification\n" " à des widgets externes pouvant être intégrés à votre site Web." -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "URLs CORS autorisées" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "URL distantes autorisées à accéder à cette instance LibreTime dans un navigateur. Une URL par ligne." -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "Langage par défaut" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "Fuseau horaire de la Station" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "La semaine commence le" -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "Afficher le bouton de connexion sur votre page radio?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' n'est pas une adresse de courriel valide dans le format de type partie-locale@nomdedomaine" +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" +msgstr "Enregistrer à partir de 'Line In'?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' ne correspond pas au format de la date '%format%'" +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" +msgstr "Rediffusion?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' est inférieur à %min% charactères" +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" +msgstr "Email" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' est plus grand de %min% charactères" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' n'est pas entre '%min%' et '%max%', inclusivement" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "Les mots de passe ne correspondent pas" +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" +msgstr "Réinitialisation du Mot de Passe" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 msgid "Auto Switch Off:" @@ -3201,16 +4318,6 @@ msgstr "Port - Source Émission:" msgid "Show Source Mount:" msgstr "Point de montage - Source Émission:" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "Connexion" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "Saisissez les caractères que vous voyez dans l'image ci-dessous." - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3224,25 +4331,97 @@ msgstr "Confirmez le nouveau mot de passe" msgid "Password confirmation does not match your password." msgstr "La confirmation du mot de passe ne correspond pas à votre mot de passe." -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" -msgstr "Email" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "Supprimer toutes les pistes de la librairie" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" -msgstr "Utilisateur" +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" +msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Réinitialisation du Mot de Passe" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" +msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" -msgstr "Retour" +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "jours" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Activé:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "Mobile:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "Type de Flux:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "Type de service:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "Cannaux:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "1 - Mono" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "2 - Stereo" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "Serveur" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "Port" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "URL" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "Point de Montage" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "Utilisateur Admin" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "Mot de Passe Admin" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "Le Serveur ne peut être vide." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "Le Port ne peut être vide." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "Le Point de Montage ne peut être vide avec un serveur Icecast." + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "Fuseau horaire de l'interface:" #: airtime_mvc/application/forms/Player.php:14 msgid "Now Playing" @@ -3268,280 +4447,54 @@ msgstr " - Interface mobile" msgid " - The player does not support Opus streams." msgstr " - Le lecteur ne fonctionne pas avec des flux Opus." -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "Code à intégrer:" - #: airtime_mvc/application/forms/Player.php:72 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "Copiez-collez ce code dans le code HTML de votre site pour y intégrer ce lecteur." -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -msgid "Preview:" -msgstr "Prévisualisation:" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "Pousser les métadonnées sur votre station sur TuneIn?" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "Feed Privacy" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "Identifiant de la station:" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" -msgstr "Publique" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "Clé partenaire:" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" -msgstr "Privé" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "ID partenaire:" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" -msgstr "Téléphone:" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "Paramètres TuneIn non valides. Assurez-vous que vos paramètres TuneIn sont corrects et réessayez." -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" -msgstr "Site Internet de la Station:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' n'est pas une adresse de courriel valide dans le format de type partie-locale@nomdedomaine" -#: airtime_mvc/application/forms/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" -msgstr "Pays:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' ne correspond pas au format de la date '%format%'" -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" -msgstr "Ville:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' est inférieur à %min% charactères" -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" -msgstr "Description de la Station:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' est plus grand de %min% charactères" -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" -msgstr "Promouvoir station sur %s" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' n'est pas entre '%min%' et '%max%', inclusivement" -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "En cochant cette case , je accepte la %s's %s de politique de confidentialité %s ." - -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "Vous devez accepter la politique de confidentialité." - -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "Langage de la station" - -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "Filtrer par émissions" - -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "Toutes mes émissions:" - -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "Mes émissions" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr "Selectionner le critère" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "Taux d'Echantillonage (Kbps)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "Description" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "Taux d'Echantillonage (Khz)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "heures" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "minutes" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "éléments" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "Aléatoirement" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "Plus récent" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "Plus vieux" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "Type:" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "Statique" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "Dynamique" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "Autoriser la répétition de pistes:" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "Autoriser la dernière piste à dépasser l'horaire:" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "Voici une pré-visualisation du contenu qui peut être généré par le bloc intelligent basé sur le critère ci-dessus." - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "Options avancées" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "Trier les pistes:" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "Limiter à:" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "Génération de la liste de lecture et sauvegarde des crières" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "Générer" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "Contenu de la liste de lecture alèatoire" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "Aléatoire" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "La Limite ne peut être vide ou plus petite que 0" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "La Limite ne peut être supérieure à 24 heures" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "La valeur doit être un entier" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "500 est la valeur maximale de l'élément que vous pouvez définir" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "Vous devez sélectionner Critères et Modification" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "La 'Durée' doit être au format '00:00:00'" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "La valeur doit être en format d'horodatage (par exemple 0000-00-00 ou 0000-00-00 00:00:00)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:597 -msgid "The value has to be numeric" -msgstr "La valeur doit être numérique" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "La valeur doit être inférieure à 2147483648" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "La valeur doit être inférieure à %s caractères" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "La Valeur ne peut pas être vide" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -msgid "Default License:" -msgstr "Licence par Défaut:" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "Tous droits réservés" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -msgid "The work is in the public domain" -msgstr "Ce travail est dans le domaine public" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Attribution" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -msgid "Creative Commons Attribution Noncommercial" -msgstr "Creative Commons Attribution Non Commercial" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "Creative Commons Attribution Pas de Travaux Dérivés" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -msgid "Creative Commons Attribution Share Alike" -msgstr "Creative Commons Attribution Distribution à l'Identique" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "Creative Commons Attribution Non Commercial Pas de Travaux Dérivés" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "Creative Commons Attribution Non Commercial Distribution à l'Identique" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" -msgstr "Type de partage par défaut:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" +msgstr "Les mots de passe ne correspondent pas" #: airtime_mvc/application/forms/StreamSetting.php:26 msgid "Hardware Audio Output:" @@ -3619,397 +4572,638 @@ msgstr "Streaming par défaut" msgid "Custom / 3rd Party Streaming" msgstr "Streaming personnalisé / tiers" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Activé:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "Mobile:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Type de Flux:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "Débit:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Type de service:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Cannaux:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Mono" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Stereo" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Serveur" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Port" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "Nom" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Point de Montage" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Utilisateur Admin" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Mot de Passe Admin" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Le Serveur ne peut être vide." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "Le Port ne peut être vide." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Le Point de Montage ne peut être vide avec un serveur Icecast." - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "Pousser les métadonnées sur votre station sur TuneIn?" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "Identifiant de la station:" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "Clé partenaire:" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "ID partenaire:" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "Paramètres TuneIn non valides. Assurez-vous que vos paramètres TuneIn sont corrects et réessayez." - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "Répertoire d'importation:" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "Répertoires Suveillés:" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "N'est pas un Répertoire valide" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "Bloc intelligent" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "Flux web" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "Téléversement" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "Tableau de bord" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "Podcasts" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "Lecture" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "Stop" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -msgid "Set Cue In" -msgstr "Placer le Point d'Entré" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -msgid "Set Cue Out" -msgstr "Placer le Point de Sortie" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "Curseur" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "Airtime Pro fait peau neuve!" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read on to find out more." -msgstr "" -"Vos fonctionnalités préférées sont encore plus faciles à utiliser - et nous en avons même \n" -" ajouté quelques nouvelles! Regardez la vidéo ci-dessus ou lisez la suite pour en savoir plus." - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -" is easier than ever." -msgstr "Notre nouvelle vue Tableau de bord dispose désormais d’une puissante interface d’édition par onglets. La mise à jour de vos pistes et de vos listes de lecture est donc plus simple que jamais." - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -" just a click away, you'll be on air and hands-free in no time." -msgstr "" -"Nous avons rationalisé l'interface Airtime pour faciliter la navigation. Avec les outils les plus importants\n" -" à portée de clic, vous serez en direct et les mains libres en un rien de temps." - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -msgstr "Vous avez une énorme bibliothèque de musique? Aucun problème! Avec la nouvelle page Téléverser, vous pouvez faire glisser des dossiers entiers dans notre cloud privé." - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "" -"Le nouveau temps d'antenne est plus fluide, plus élégant et plus rapide - sur encore plus d'appareils! Nous nous\n" -" sommes engagés à améliorer l'expérience Airtime, quelle qu'en soit votre utilisation." - -#: airtime_mvc/application/layouts/scripts/livestream.phtml:9 -#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2 -msgid "Live stream" -msgstr "Flux Live" - -#: airtime_mvc/application/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/DateHelper.php:213 #, php-format -msgid "%1$s copyright © %2$s All rights reserved.If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:493 +msgid "On Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:494 +msgid "Off Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:495 +msgid "Offline" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:179 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "E-mail nije mogao biti poslan. Provjeri svoje postavke poslužitelja pošte i uvjeri se da je ispravno podešen." - -#: airtime_mvc/application/controllers/LoginController.php:183 -msgid "That username or email address could not be found." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "Pogrešno korisničko ime ili lozinka. Molimo pokušaj ponovno." - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "Gledaš stariju verziju %s" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Ne možeš dodavati pjesme za dinamične blokove." - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Nemaš dopuštenje za brisanje odabranog (e) %s." - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "Možeš samo pjesme dodavati za pametnog bloka." - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "Neimenovani Popis Pjesama" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "Neimenovani Smart Block" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "Nepoznati Popis Pjesama" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "Postavke su ažurirane." - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "Podrška postavka je ažurirana." - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "Povratne Informacije" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "Prijenos Podešavanje je Ažurirano." - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "put bi trebao biti specificiran" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "Problem sa Liquidsoap..." - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "Reemitiranje emisija %s od %s na %s" -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" -msgstr "Odaberi pokazivač" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" +msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" -msgstr "Ukloni pokazivač" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" +msgstr "Snimljena datoteka ne postoji" -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" -msgstr "emisija ne postoji" +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" +msgstr "Metapodaci Snimljenog Fajla" -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "Korisnik je uspješno dodan!" +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "" -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "Korisnik je uspješno ažuriran!" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "" -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "Postavke su uspješno ažurirane!" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" +msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Neimenovani Prijenos" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" +msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Prijenos je spremljen." +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" +msgstr "Uredi Programa" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Nevažeći vrijednosti obrasca." +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Uneseni su nevažeći znakovi" +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Dan mora biti naveden" +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" +msgstr "Dozvola odbijena" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "Vrijeme mora biti navedeno" +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" +msgstr "Ne možeš povući i ispustiti ponavljajuće emisije" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Moraš čekati najmanje 1 sat za re-emitiranje" +#: airtime_mvc/application/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "Ne možeš premjestiti događane emisije" + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "Ne možeš premjestiti emisiju u prošlosti" + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "Ne možeš zakazati preklapajuće emisije" + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Ne možeš premjestiti snimljene emisije ranije od 1 sat vremena prije njenih reemitiranja." + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Emisija je izbrisana jer je snimljena emisija ne postoji!" + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Moraš pričekati 1 sat za re-emitiranje." + +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "Pjesma" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "Vrijeme Početka" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "Vrijeme Završetka" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" +msgstr "Pušteno" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" +#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr "Odaberi kriterije" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "Brzina u Bitovima (Kbps)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "Uzorak Stopa (kHz)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "sati" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "minuti" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "elementi" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "Dinamički" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "Statički" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "Generiranje popisa pjesama i spremanje sadržaja kriterije" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "Sadržaj slučajni izbor popis pjesama" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Ograničenje ne može biti prazan ili manji od 0" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "Ograničenje ne može biti više od 24 sati" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "Vrijednost mora biti cijeli broj" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "500 je max stavku graničnu vrijednost moguće je podesiti" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "Moraš odabrati Kriteriju i Modifikaciju" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "'Dužina' trebala biti u '00:00:00' obliku" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Vrijednost mora biti u obliku vremenske oznake (npr. 0000-00-00 ili 0000-00-00 00:00:00)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "Vrijednost mora biti numerička" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "Vrijednost bi trebala biti manja od 2147483648" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 #, php-format -msgid "Use %s Authentication:" +msgid "The value should be less than %s characters" +msgstr "Vrijednost mora biti manja od %s znakova" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" +msgstr "Vrijednost ne može biti prazna" + +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "Koristi Prilagođeno provjeru autentičnosti:" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "Prilagođeno Korisničko Ime" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Prilagođena Lozinka" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "ISRC Broj:" + +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" +msgstr "Uvozna Mapa:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "'Korisničko Ime' polja ne smije ostati prazno." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" +msgstr "Mape Pod Nadzorom:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "'Lozinka' polja ne smije ostati prazno." - -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -msgid "days" -msgstr "dani" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" +msgstr "Ne valjana Direktorija" #: airtime_mvc/application/forms/AddShowRepeats.php:10 msgid "Link:" @@ -2635,8 +3881,9 @@ msgid "day of the week" msgstr "dan u tjednu" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "Datum Završetka:" @@ -2652,78 +3899,10 @@ msgstr "Datum završetka mora biti nakon datuma početka" msgid "Please select a repeat day" msgstr "Molimo, odaberi kojeg dana" -#: airtime_mvc/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Snimanje sa Line In?" - -#: airtime_mvc/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Ponovno emitirati?" - -#: airtime_mvc/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "Boja Pozadine:" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "Boja Teksta:" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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 "Ukloni" - -#: airtime_mvc/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -msgid "Name:" -msgstr "Naziv:" - -#: airtime_mvc/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Neimenovan Program" - -#: airtime_mvc/application/forms/AddShowWhat.php:36 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "URL:" -msgstr "URL:" - -#: airtime_mvc/application/forms/AddShowWhat.php:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "Žanr:" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "Opis:" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" +msgstr "Vrijednost je potrebna i ne može biti prazan" #: airtime_mvc/application/forms/AddShowWhen.php:16 msgid "'%value%' does not fit the time format 'HH:mm'" @@ -2733,6 +3912,7 @@ msgstr "'%value%' se ne uklapa u vremenskom formatu 'HH:mm'" msgid "Start Time:" msgstr "" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "" @@ -2741,12 +3921,6 @@ msgstr "" msgid "End Time:" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "Trajanje:" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "Vremenska Zona:" @@ -2764,7 +3938,7 @@ msgid "Cannot modify start date/time of the show that is already started" msgstr "Ne možeš mijenjati datum/vrijeme početak emisije, ako je već počela" #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "Datum završetka i vrijeme ne može biti u prošlosti" @@ -2780,32 +3954,17 @@ msgstr "Ne može trajati 00h 00m" msgid "Cannot have duration greater than 24h" msgstr "Ne može trajati više od 24h" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -msgstr "Ne možeš zakazati preklapajuće emisije" - -#: airtime_mvc/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Traži Korisnike:" - -#: airtime_mvc/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "Disk-Džokeji:" - #: airtime_mvc/application/forms/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "Korisničko ime:" #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "Lozinka:" @@ -2826,8 +3985,6 @@ msgstr "Prezime:" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "E-mail:" @@ -2851,112 +4008,159 @@ msgid "User Type:" msgstr "Vrsta Korisnika:" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "Ime prijave nije jedinstveno." -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Vrijednost je potrebna i ne može biti prazan" - -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" msgstr "" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" +msgstr "Koristi Prilagođeno provjeru autentičnosti:" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "Prilagođeno Korisničko Ime" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Prilagođena Lozinka" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "'Korisničko Ime' polja ne smije ostati prazno." + +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "'Lozinka' polja ne smije ostati prazno." + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "Stanična Vremenska Zona" + +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "Datum Početka:" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" -msgstr "Naziv:" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" +msgstr "Uneseni su nevažeći znakovi" -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" -msgstr "Tvorac:" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" +msgstr "Traži Korisnike:" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" -msgstr "Album:" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" +msgstr "Disk-Džokeji:" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" -msgstr "Godina:" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" -msgstr "Naljepnica:" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" +msgstr "Sve Moje Emisije:" -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" -msgstr "Kompozitor:" +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" -msgstr "Dirigent:" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" +msgstr "Boja Pozadine:" -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" -msgstr "Raspoloženje:" +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" +msgstr "Boja Teksta:" -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" -msgstr "BPM:" +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" -msgstr "Autorsko pravo:" +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" -msgstr "ISRC Broj:" +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" -msgstr "Web stranica:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 +msgid "Day must be specified" +msgstr "Dan mora biti naveden" -#: airtime_mvc/application/forms/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" -msgstr "Jezik:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 +msgid "Time must be specified" +msgstr "Vrijeme mora biti navedeno" -#: airtime_mvc/application/forms/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" -msgstr "Vrijeme Početka" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Moraš čekati najmanje 1 sat za re-emitiranje" -#: airtime_mvc/application/forms/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" -msgstr "Vrijeme Završetka" +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Neimenovan Program" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Vremenska Zona Sučelja:" +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "Naziv Postaje" @@ -2965,12 +4169,10 @@ msgid "Station Description" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "Logo:" #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "Napomena: Sve veća od 600x600 će se mijenjati." @@ -2993,94 +4195,83 @@ msgstr "Zadano Odtamnjenje (s):" msgid "Default Fade Out (s):" msgstr "Zadano Zatamnjenje (s):" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 -msgid "Overwrite Podcast Episode Metatags" +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:120 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "Onemogućeno" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" -msgstr "Omogućeno" - #: airtime_mvc/application/forms/GeneralPreferences.php:111 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgid "Intro Autoloading Playlist" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public LibreTime API" +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 -msgid "Required for embeddable schedule widget." +msgid "Overwrite Podcast Episode Metatags" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "Stanična Vremenska Zona" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "Prvi Dan u Tjednu" -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' nije valjana e-mail adresa u osnovnom obliku local-part@hostname" +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" +msgstr "Snimanje sa Line In?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' ne odgovara po obliku datuma '%format%'" +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" +msgstr "Ponovno emitirati?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' je manji od %min% dugačko znakova" +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" +msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' je više od %max% dugačko znakova" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' nije između '%min%' i '%max%', uključivo" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "Lozinke se ne podudaraju" +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" +msgstr "Resetuj lozinku" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 msgid "Auto Switch Off:" @@ -3124,16 +4315,6 @@ msgstr "" msgid "Show Source Mount:" msgstr "" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "Prijava" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "Upiši znakove koje vidiš na slici u nastavku." - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3147,26 +4328,98 @@ msgstr "Potvrdi novu lozinku" msgid "Password confirmation does not match your password." msgstr "Lozinke koje ste unijeli ne podudaraju se." -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" -msgstr "Korisničko ime" - -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Resetuj lozinku" - -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" msgstr "" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "dani" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Omogućeno:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "Prijenos Tipa:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "Tip Usluge:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "Kanali:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "1 - Mono" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "2 - Stereo" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "Poslužitelj" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "Port" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "URL" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "Točka Montiranja" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "Admin Korisnik" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "Admin Lozinka" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "Poslužitelj ne može biti prazan." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "Port ne može biti prazan." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "Montiranje ne može biti prazna s Icecast poslužiteljem." + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "Vremenska Zona Sučelja:" + #: airtime_mvc/application/forms/Player.php:14 msgid "Now Playing" msgstr "Trenutno Izvođena" @@ -3191,280 +4444,54 @@ msgstr "" msgid " - The player does not support Opus streams." msgstr "" -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - #: airtime_mvc/application/forms/Player.php:72 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -msgid "Preview:" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" -msgstr "Telefon:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" -msgstr "Web Stranica:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" -msgstr "Država:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" -msgstr "Grad:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" -msgstr "Opis:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' nije valjana e-mail adresa u osnovnom obliku local-part@hostname" -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "Moraš pristati na pravila o privatnosti." +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' ne odgovara po obliku datuma '%format%'" -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' je manji od %min% dugačko znakova" -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' je više od %max% dugačko znakova" -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "Sve Moje Emisije:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' nije između '%min%' i '%max%', uključivo" -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr "Odaberi kriterije" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "Brzina u Bitovima (Kbps)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "Opis" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "Uzorak Stopa (kHz)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "sati" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "minuti" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "elementi" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "Statički" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "Dinamički" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "Generiranje popisa pjesama i spremanje sadržaja kriterije" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "Generiraj" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "Sadržaj slučajni izbor popis pjesama" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "Miješanje" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Ograničenje ne može biti prazan ili manji od 0" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "Ograničenje ne može biti više od 24 sati" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "Vrijednost mora biti cijeli broj" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "500 je max stavku graničnu vrijednost moguće je podesiti" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "Moraš odabrati Kriteriju i Modifikaciju" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "'Dužina' trebala biti u '00:00:00' obliku" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Vrijednost mora biti u obliku vremenske oznake (npr. 0000-00-00 ili 0000-00-00 00:00:00)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:597 -msgid "The value has to be numeric" -msgstr "Vrijednost mora biti numerička" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "Vrijednost bi trebala biti manja od 2147483648" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Vrijednost mora biti manja od %s znakova" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "Vrijednost ne može biti prazna" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -msgid "Default License:" -msgstr "Zadana Dozvola:" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "Sva prava pridržana" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -msgid "The work is in the public domain" -msgstr "Rad je u javnoj domeni" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Imenovanje" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -msgid "Creative Commons Attribution Noncommercial" -msgstr "Creative Commons Imenovanje Nekomercijalno" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "Creative Commons Imenovanje Bez Izvedenih Djela" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -msgid "Creative Commons Attribution Share Alike" -msgstr "Creative Commons Imenovanje Dijeli Pod Istim Uvjetima" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "Creative Commons Imenovanje Nekomercijalno Bez Izvedenih Djela" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "Creative Commons Imenovanje Nekomercijalno Dijeli Pod Istim Uvjetima" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" +msgstr "Lozinke se ne podudaraju" #: airtime_mvc/application/forms/StreamSetting.php:26 msgid "Hardware Audio Output:" @@ -3542,381 +4569,636 @@ msgstr "" msgid "Custom / 3rd Party Streaming" msgstr "" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Omogućeno:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Prijenos Tipa:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "Brzina u Bitovima:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Tip Usluge:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Kanali:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Mono" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Stereo" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Poslužitelj" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Port" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "Naziv" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Točka Montiranja" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Admin Korisnik" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Admin Lozinka" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Poslužitelj ne može biti prazan." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "Port ne može biti prazan." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Montiranje ne može biti prazna s Icecast poslužiteljem." - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "Uvozna Mapa:" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "Mape Pod Nadzorom:" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "Ne valjana Direktorija" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "Pokreni" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "Zaustavi" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -msgid "Set Cue In" -msgstr "Podesi Cue In" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -msgid "Set Cue Out" -msgstr "Podesi Cue Out" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "Pokazivač" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read on to find out more." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -" is easier than ever." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -" just a click away, you'll be on air and hands-free in no time." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/livestream.phtml:9 -#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2 -msgid "Live stream" -msgstr "Prijenos uživo" - -#: airtime_mvc/application/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/DateHelper.php:213 #, php-format -msgid "%1$s copyright © %2$s All rights reserved.If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:493 msgid "On Air" msgstr "Adásban" -#: airtime_mvc/application/controllers/LocaleController.php:435 +#: airtime_mvc/application/controllers/LocaleController.php:494 msgid "Off Air" msgstr "Adásszünet" -#: airtime_mvc/application/controllers/LocaleController.php:436 +#: airtime_mvc/application/controllers/LocaleController.php:495 msgid "Offline" msgstr "Kapcsolat nélkül" -#: airtime_mvc/application/controllers/LocaleController.php:437 +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "Nincs semmi ütemezve" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "Kérjük adja meg felhasználónevét és jelszavát." - -#: airtime_mvc/application/controllers/LoginController.php:179 -msgid "" -"Email could not be sent. Check your mail server settings and ensure it has" -" been configured properly." +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." msgstr "" -"Az emailt nem lehetett elküldeni. Ellenőrizni kell a levelező kiszolgáló" -" beállításait és, hogy megfelelő-e a konfiguráció." -#: airtime_mvc/application/controllers/LoginController.php:183 -msgid "That username or email address could not be found." -msgstr "A felhasználónév vagy email cím nem található." - -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "" -"Valamilyen probléma van a megadott felhasználónévvel vagy email címmel." - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "Hibás felhasználónév vagy jelszó. Kérjük, próbálja meg újra." - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "Ön %s egy régebbi verzióját tekinti meg" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Dinamikus blokkokhoz nem lehet sávokat hozzáadni" - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "A kiválasztott %s törléséhez nincs engedélye." - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "Csak sávokat lehet hozzáadni az okosblokkhoz." - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "Névtelen lejátszási lista" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "Névtelen okosblokk" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "Ismeretlen lejátszási lista" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "Beállítások frissítve." - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "Támogatási beállítások frissítve." - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "Támogatási visszajelzés" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "Adásfolyam beállítások frissítve." - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "az útvonalat meg kell határozni" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "Probléma lépett fel a Liquidsoap-al..." - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "A kérés módja nem elfogadott" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, fuzzy, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "A műsor újraközvetítése %s -tól/-től %s a %s" -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" -msgstr "Kurzor kiválasztása" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" +msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" -msgstr "Kurzor eltávolítása" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" +msgstr "Rögzített fájl nem létezik" -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" -msgstr "a műsor nem található" +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" +msgstr "A rögzített fájl metaadatai" -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "Felhasználó sikeresen hozzáadva!" +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "Sávok ütemezése" -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "Felhasználó sikeresen módosítva!" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "Műsor törlése" -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "Beállítások sikeresen módosítva!" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" +msgstr "Műsor megszakítása" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Névtelen adásfolyam" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" +msgstr "Példány szerkesztése:" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Web-adásfolyam mentve." +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" +msgstr "Műsor szerkesztése" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Érvénytelen űrlap értékek." +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" +msgstr "Példány törlése:" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Érvénytelen bevitt karakterek" +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" +msgstr "Ennek a példánynak és minden utána következő példánynak a törlése" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "A napot meg kell határoznia" +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" +msgstr "Engedély megtagadva" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "Az időt meg kell határoznia" +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" +msgstr "Ismétlődő műsorokat nem lehet megfogni és áthúzni" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Az újraközvetítésre legalább 1 órát kell várni" +#: airtime_mvc/application/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "Az elhangzott műsort nem lehet áthelyezni" + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "A műsort nem lehet a múltba áthelyezni" + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "Nem fedhetik egymást a műsorok" + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Egy rögzített műsort nem lehet mozgatni, ha kevesebb mint egy óra van hátra az újraközvetítéséig." + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "A műsor törlésre került, mert a rögzített műsor nem létezik!" + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Az adás újbóli közvetítésére 1 órát kell várni." + +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "Sáv" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "Kezdési Idő" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "Befejezési idő" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" +msgstr "Lejátszva" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "Lejátszási lista automatikus ütemezése?" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "Lejátszási lista kiválasztása" -#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" +#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr "A feltételek megadása" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "Bitráta (Kbps)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "Mintavételi ráta (kHz)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "óra" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "perc" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "elem" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "Véletlenszerűen" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "Legújabb" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "Legrégebbi" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "Típus:" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "Dinamikus" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "Statikus" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "Ismétlődő sávok engedélyezése:" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "Sávok rendezése:" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "Korlátozva:" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "Lejátszási lista tartalmának létrehozása és a feltétel mentése" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "Véletlenszerű lejátszási lista tartalom" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "A határérték nem lehet üres vagy kisebb, mint 0" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "A határérték nem lehet hosszabb, mint 24 óra" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "Az érték csak egész szám lehet" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "Maximum 500 elem állítható be" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "Feltételt és módosítót kell választani" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "A „Hosszúság”-ot „00:00:00” formában kell megadni" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Az értéknek az alábbi időbélyeg formátumban kell lennie (pl. 0000-00-00 vagy 0000-00-00 00:00:00)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "Az értéknek numerikusnak kell lennie" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "Az értéknek kevesebbnek kell lennie, mint 2147483648" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 #, php-format -msgid "Use %s Authentication:" -msgstr "%s hitelesítés használata:" +msgid "The value should be less than %s characters" +msgstr "Az értéknek rövidebb kell lennie, mint %s karakter" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "Egyéni hitelesítés használata:" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" +msgstr "Az érték nem lehet üres" -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "Egyéni felhasználónév" +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Egyéni jelszó" +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" -msgstr "Hoszt:" +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "ISRC Szám:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" -msgstr "Port:" +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." +msgstr "Közzététel..." -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "Csatolási pont:" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" +msgstr "Import mappa:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "A felhasználónév mező nem lehet üres." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" +msgstr "Figyelt Mappák:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "A jelszó mező nem lehet üres." - -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -msgid "days" -msgstr "napok" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" +msgstr "Érvénytelen könyvtár" #: airtime_mvc/application/forms/AddShowRepeats.php:10 msgid "Link:" @@ -2799,8 +3909,9 @@ msgid "day of the week" msgstr "a hét napja" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "Befejezés dátuma:" @@ -2816,78 +3927,10 @@ msgstr "A befejezés dátumának a kezdés dátuma után kell lennie" msgid "Please select a repeat day" msgstr "Kérjük válasszon egy ismétlési napot" -#: airtime_mvc/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Felvétel a vonalbemenetről?" - -#: airtime_mvc/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Újraközvetítés?" - -#: airtime_mvc/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "Háttérszín:" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "Szövegszín:" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "Jelenlegi logó:" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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 "Eltávolítás" - -#: airtime_mvc/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "Logó mutatása:" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -msgstr "Logó előnézete:" - -#: 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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -msgid "Name:" -msgstr "Név:" - -#: airtime_mvc/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Cím nélküli műsor" - -#: airtime_mvc/application/forms/AddShowWhat.php:36 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "URL:" -msgstr "URL:" - -#: airtime_mvc/application/forms/AddShowWhat.php:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "Műfaj:" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "Leírás:" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "Példány leírása:" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" +msgstr "Kötelező értéket megadni, nem lehet üres" #: airtime_mvc/application/forms/AddShowWhen.php:16 msgid "'%value%' does not fit the time format 'HH:mm'" @@ -2897,6 +3940,7 @@ msgstr "'%value%' nem illeszkedik „ÓÓ:pp” formátumra" msgid "Start Time:" msgstr "Kezdési Idő:" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "A jövőben:" @@ -2905,12 +3949,6 @@ msgstr "A jövőben:" msgid "End Time:" msgstr "Befejezési idő:" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "Időtartam:" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "Időzóna:" @@ -2925,12 +3963,10 @@ msgstr "Műsort nem lehet a múltban létrehozni" #: airtime_mvc/application/forms/AddShowWhen.php:147 msgid "Cannot modify start date/time of the show that is already started" -msgstr "" -"Nem lehet módosítani a műsor kezdési dátumát és időpontját, ha a műsor már" -" elkezdődött" +msgstr "Nem lehet módosítani a műsor kezdési dátumát és időpontját, ha a műsor már elkezdődött" #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "A befejezési dátum és időpont nem lehet a múltban" @@ -2946,32 +3982,17 @@ msgstr "Időtartam nem lehet 0ó 0p" msgid "Cannot have duration greater than 24h" msgstr "Időtartam nem lehet nagyobb mint 24 óra" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -msgstr "Nem fedhetik egymást a műsorok" - -#: airtime_mvc/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Felhasználók keresése:" - -#: airtime_mvc/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "DJ-k:" - #: airtime_mvc/application/forms/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "Felhasználónév:" #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "Jelszó:" @@ -2992,8 +4013,6 @@ msgstr "Keresztnév:" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "Email:" @@ -3017,112 +4036,159 @@ msgid "User Type:" msgstr "Felhasználótípus:" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "A bejelentkezési név nem egyedi." -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Kötelező értéket megadni, nem lehet üres" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" +msgstr "%s hitelesítés használata:" -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "Az összes sáv törlése a könyvtárból" +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" +msgstr "Egyéni hitelesítés használata:" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "Egyéni felhasználónév" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Egyéni jelszó" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" +msgstr "Hoszt:" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "Port:" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "Csatolási pont:" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "A felhasználónév mező nem lehet üres." + +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "A jelszó mező nem lehet üres." + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "Állomás nyelve" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "Állomás időzóna" + +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "Hírfolyam adatvédelem" + +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "Nyilvános" + +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "Privát" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "Kezdés Ideje:" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" -msgstr "Cím:" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" +msgstr "Érvénytelen bevitt karakterek" -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" -msgstr "Létrehozó:" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" +msgstr "Felhasználók keresése:" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" -msgstr "Album:" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" +msgstr "DJ-k:" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" -msgstr "Év:" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" +msgstr "Szűrés műsor szerint" -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" -msgstr "Címke:" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" +msgstr "Összes műsorom:" -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" -msgstr "Zeneszerző:" +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" +msgstr "Műsoraim" -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" -msgstr "Karmester:" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" +msgstr "Háttérszín:" -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" -msgstr "Hangulat:" +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" +msgstr "Szövegszín:" -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" -msgstr "BPM:" +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" +msgstr "Jelenlegi logó:" -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" -msgstr "Szerzői jog:" +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" +msgstr "Logó mutatása:" -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" -msgstr "ISRC Szám:" +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" +msgstr "Logó előnézete:" -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" -msgstr "Honlap:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 +msgid "Day must be specified" +msgstr "A napot meg kell határoznia" -#: airtime_mvc/application/forms/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" -msgstr "Nyelv:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 +msgid "Time must be specified" +msgstr "Az időt meg kell határoznia" -#: airtime_mvc/application/forms/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" -msgstr "Kezdési Idő" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Az újraközvetítésre legalább 1 órát kell várni" -#: airtime_mvc/application/forms/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" -msgstr "Befejezési idő" +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Cím nélküli műsor" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Felület időzónája:" +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "Példány leírása:" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "Állomásnév" @@ -3131,12 +4197,10 @@ msgid "Station Description" msgstr "Állomás leírás" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "Állomás logó:" #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "Megjegyzés: Bármi ami nagyobb, mint 600x600 átméretezésre kerül." @@ -3162,104 +4226,83 @@ msgstr "Alapértelmezett Felúsztatás (mp)" msgid "Default Fade Out (s):" msgstr "Alapértelmezett Leúsztatás (mp)" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:111 +msgid "Intro Autoloading Playlist" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:123 msgid "Overwrite Podcast Episode Metatags" msgstr "Podcast album felülírása" -#: airtime_mvc/application/forms/GeneralPreferences.php:120 +#: airtime_mvc/application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "Ha engedélyezett, a podcast sávok album mezőjébe mindig a podcast neve kerül." + +#: airtime_mvc/application/forms/GeneralPreferences.php:138 msgid "Generate a smartblock and a playlist upon creation of a new podcast" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:126 +#: airtime_mvc/application/forms/GeneralPreferences.php:144 msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "Letiltva" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" -msgstr "Engedélyezve" - -#: airtime_mvc/application/forms/GeneralPreferences.php:111 -msgid "" -"Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." -msgstr "Ha engedélyezett, a podcast sávok album mezőjébe mindig a podcast neve kerül." - -#: airtime_mvc/application/forms/GeneralPreferences.php:122 +#: airtime_mvc/application/forms/GeneralPreferences.php:155 msgid "Public LibreTime API" msgstr "Public LibreTime API" -#: airtime_mvc/application/forms/GeneralPreferences.php:123 +#: airtime_mvc/application/forms/GeneralPreferences.php:156 msgid "Required for embeddable schedule widget." msgstr "Kötelező a beágyazható ütemezés felületi elemhez." -#: airtime_mvc/application/forms/GeneralPreferences.php:129 +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" -" to external widgets that can be" -" embedded in your website." -msgstr "" -"Bejelölve engedélyezi az AirTime-nak, hogy ütemezési adatokat biztosítson a" -" weboldalakba beágyazható külső felületi elemek számára." +" to external widgets that can be embedded in your website." +msgstr "Bejelölve engedélyezi az AirTime-nak, hogy ütemezési adatokat biztosítson a weboldalakba beágyazható külső felületi elemek számára." -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "Engedélyezett CORS URL-ek" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 -msgid "" -"Remote URLs that are allowed to access this LibreTime instance in a browser." -" One URL per line." -msgstr "" -"Azok a távoli URL-ek amik böngészőből elérhetik ezt a LibreTime példányt." -" Soronként egy URL-t kell megadni." +#: airtime_mvc/application/forms/GeneralPreferences.php:175 +msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." +msgstr "Azok a távoli URL-ek amik böngészőből elérhetik ezt a LibreTime példányt. Soronként egy URL-t kell megadni." -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "Alapértelmezett nyelv" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "Állomás időzóna" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "A hét kezdőnapja" -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "Bejelentkezési gomb megjelenítése a Rádióoldalon?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "" -"'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "" -"'%value%' nem felel meg az email címek alapvető formátumának (név@hosztnév)" +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" +msgstr "Felvétel a vonalbemenetről?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' nem illeszkedik '%format%' dátumformátumra" +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" +msgstr "Újraközvetítés?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' rövidebb, mint %min% karakter" +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" +msgstr "Email" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'% value%' több mint, %max% karakter hosszú" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' értéknek '%min%' és '%max%' között kell lennie" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "A jelszavak nem egyeznek meg" +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" +msgstr "A jelszó visszaállítása" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 msgid "Auto Switch Off:" @@ -3303,16 +4346,6 @@ msgstr "Műsor-forrás port:" msgid "Show Source Mount:" msgstr "Műsor-forrás csatolási pont:" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "Bejelentkezés" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "Gépelje be a képen látható karaktereket." - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3326,25 +4359,97 @@ msgstr "Új jelszó megerősítése" msgid "Password confirmation does not match your password." msgstr "A megadott jelszavak nem egyeznek meg." -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" -msgstr "Email" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "Az összes sáv törlése a könyvtárból" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" -msgstr "Felhasználónév" +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" +msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "A jelszó visszaállítása" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" +msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" -msgstr "Vissza" +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "napok" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Engedélyezett:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "Mobil:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "Adásfolyam típusa:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "Szolgáltatás típusa:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "Csatornák:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "1 - Monó" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "2 - Sztereó" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "Kiszolgáló" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "Port" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "URL" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "Csatolási pont" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "Adminisztrátor felhasználó" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "Adminisztrátor jelszó" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "A kiszolgáló nem lehet üres." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "A port nem lehet üres." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "A csatolási pont nem lehet üres Icecast szerver esetében." + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "Felület időzónája:" #: airtime_mvc/application/forms/Player.php:14 msgid "Now Playing" @@ -3370,296 +4475,54 @@ msgstr "- Mobilbarát" msgid " - The player does not support Opus streams." msgstr "- A lejátszó nem támogatja az Opus adásfolyamokat." -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "Beágyazható kód:" - #: airtime_mvc/application/forms/Player.php:72 -msgid "" -"Copy this code and paste it into your website's HTML to embed the player in" -" your site." -msgstr "" -"A lejátszó weboldalba illesztéséhez ki kell másolni ezt a kódot és be kell" -" illeszteni a weboldal HTML kódjába." +msgid "Copy this code and paste it into your website's HTML to embed the player in your site." +msgstr "A lejátszó weboldalba illesztéséhez ki kell másolni ezt a kódot és be kell illeszteni a weboldal HTML kódjába." -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -msgid "Preview:" -msgstr "Előnézet" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "Metadata beküldése saját TuneIn állomásba?" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "Hírfolyam adatvédelem" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "Állomás azonosító:" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" -msgstr "Nyilvános" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "Partnerkulcs:" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" -msgstr "Privát" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "Partnerazonosító:" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" -msgstr "Telefon:" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "Érvénytelen TuneIn beállítások. A TuneIn beállításainak ellenőrzése után újra lehet próbálni." -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" -msgstr "Az állomás honlapja:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' nem felel meg az email címek alapvető formátumának (név@hosztnév)" -#: airtime_mvc/application/forms/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" -msgstr "Ország:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' nem illeszkedik '%format%' dátumformátumra" -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" -msgstr "Város:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' rövidebb, mint %min% karakter" -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" -msgstr "Állomás leírása:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" +msgstr "'% value%' több mint, %max% karakter hosszú" -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" -msgstr "Az állomásom közzététele itt: %s" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' értéknek '%min%' és '%max%' között kell lennie" -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, fuzzy, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "A mező bejelölésével, elfogadom a %s %sadatvédelmi irányelveit%s." - -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "El kell fogadnia az adatvédelmi irányelveket." - -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "Állomás nyelve" - -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "Szűrés műsor szerint" - -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "Összes műsorom:" - -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "Műsoraim" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr "A feltételek megadása" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "Bitráta (Kbps)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "Leírás" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "Mintavételi ráta (kHz)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "óra" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "perc" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "elem" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "Véletlenszerűen" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "Legújabb" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "Legrégebbi" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "Típus:" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "Statikus" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "Dinamikus" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "Ismétlődő sávok engedélyezése:" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "Sávok rendezése:" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "Korlátozva:" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "Lejátszási lista tartalmának létrehozása és a feltétel mentése" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "Létrehozás" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "Véletlenszerű lejátszási lista tartalom" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "Véletlenszerű" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "A határérték nem lehet üres vagy kisebb, mint 0" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "A határérték nem lehet hosszabb, mint 24 óra" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "Az érték csak egész szám lehet" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "Maximum 500 elem állítható be" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "Feltételt és módosítót kell választani" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "A „Hosszúság”-ot „00:00:00” formában kell megadni" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -msgid "" -"The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00" -" 00:00:00)" -msgstr "" -"Az értéknek az alábbi időbélyeg formátumban kell lennie (pl. 0000-00-00 vagy" -" 0000-00-00 00:00:00)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:597 -msgid "The value has to be numeric" -msgstr "Az értéknek numerikusnak kell lennie" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "Az értéknek kevesebbnek kell lennie, mint 2147483648" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Az értéknek rövidebb kell lennie, mint %s karakter" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "Az érték nem lehet üres" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -#, fuzzy -msgid "Default License:" -msgstr "Alapértelmezett Liszensz:" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "Minden jog fenntartva" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -#, fuzzy -msgid "The work is in the public domain" -msgstr "A munka a nyilvános felületen folyik" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -#, fuzzy -msgid "Creative Commons Attribution" -msgstr "Creative Commons Tulajdonjog" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -#, fuzzy -msgid "Creative Commons Attribution Noncommercial" -msgstr "Creative Commons Nem Kereskedelmi Tulajdonjog" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -#, fuzzy -msgid "Creative Commons Attribution No Derivative Works" -msgstr "Creative Commons Nem Feldolgozható Tulajdonjog" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -#, fuzzy -msgid "Creative Commons Attribution Share Alike" -msgstr "Creative Commons Eredményeket Megosztó Tulajdonjog" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -#, fuzzy -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "Creative Commons Nem Kereskedelmi Nem Feldolgozható Tulajdonjog" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -#, fuzzy -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "Creative Commons Nem Kereskedelmi Megosztó Tulajdonjog" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" -msgstr "Alapértelmezett megosztástípus:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" +msgstr "A jelszavak nem egyeznek meg" #: airtime_mvc/application/forms/StreamSetting.php:26 msgid "Hardware Audio Output:" @@ -3739,420 +4602,642 @@ msgstr "Alapértelmezett adásfolyam:" msgid "Custom / 3rd Party Streaming" msgstr "Egyéni / Más féltől származó adásfolyam" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Engedélyezett:" +#: airtime_mvc/application/common/DateHelper.php:213 +#, php-format +msgid "The year %s must be within the range of 1753 - 9999" +msgstr "Az évnek %s 1753 - 9999 közötti tartományban kell lennie" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "Mobil:" +#: airtime_mvc/application/common/DateHelper.php:216 +#, php-format +msgid "%s-%s-%s is not a valid date" +msgstr "%s-%s-%s érvénytelen dátum" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Adásfolyam típusa:" +#: airtime_mvc/application/common/DateHelper.php:240 +#, php-format +msgid "%s:%s:%s is not a valid time" +msgstr "%s:%s:%s érvénytelen időpont" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "Bitráta:" +#: airtime_mvc/application/common/UsabilityHints.php:66 +msgid "Upload some tracks below to add them to your library!" +msgstr "A lenti mezőben feltöltve lehet sávokat hozzáadni a saját könyvtárhoz!" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Szolgáltatás típusa:" +#: airtime_mvc/application/common/UsabilityHints.php:68 +#, php-format +msgid "It looks like you haven't uploaded any audio files yet. %sUpload a file now%s." +msgstr "Úgy tűnik még nincsenek feltöltve audió fájlok. %sFájl feltöltése most%s." -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Csatornák:" +#: airtime_mvc/application/common/UsabilityHints.php:74 +msgid "Click the 'New Show' button and fill out the required fields." +msgstr "\tKattintson az „Új műsor” gombra és töltse ki a kötelező mezőket!" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Monó" +#: airtime_mvc/application/common/UsabilityHints.php:76 +#, php-format +msgid "It looks like you don't have any shows scheduled. %sCreate a show now%s." +msgstr "Úgy tűnik még nincsenek ütemezett műsorok. %sMűsor létrehozása most%s." -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Sztereó" +#: airtime_mvc/application/common/UsabilityHints.php:84 +msgid "To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'." +msgstr "A közvetítés elkezdéséhez meg kell szakítani az aktuális hivatkozott műsort. Kattintson a műsorra és válassza a „Műsor megszakítása” lehetőséget." -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Kiszolgáló" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Port" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "Név" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Csatolási pont" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Adminisztrátor felhasználó" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Adminisztrátor jelszó" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "A kiszolgáló nem lehet üres." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "A port nem lehet üres." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "A csatolási pont nem lehet üres Icecast szerver esetében." - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "Metadata beküldése saját TuneIn állomásba?" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "Állomás azonosító:" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "Partnerkulcs:" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "Partnerazonosító:" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "" -"Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and" -" try again." -msgstr "" -"Érvénytelen TuneIn beállítások. A TuneIn beállításainak ellenőrzése után újra" -" lehet próbálni." - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "Import mappa:" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "Figyelt Mappák:" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "Érvénytelen könyvtár" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "Okosblokk" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "Web-adásfolyam" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "Feltöltés" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "Műszerfal" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "Podcastok" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "Lejátszás" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "Leállítás" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -#, fuzzy -msgid "Set Cue In" -msgstr "Felkeverés Beállítása" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -#, fuzzy -msgid "Set Cue Out" -msgstr "Lekeverés Beállítása" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "Kurzor" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read" -" on to find out more." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so" -" updating your tracks and playlists\n" -" is easier than ever." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the" -" most important tools\n" -" just a click away, you'll be on air and hands-free in" -" no time." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "" -"Got a huge music library? No problem! With the new Upload page, you can drag" -" and drop whole folders to our private cloud." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices!" -" We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/livestream.phtml:9 -#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2 -msgid "Live stream" -msgstr "Élő adásfolyam" - -#: airtime_mvc/application/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/UsabilityHints.php:86 #, php-format msgid "" -"%1$s copyright © %2$s All rights reserved.If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:493 +msgid "On Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:494 +msgid "Off Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:495 +msgid "Offline" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:179 -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:183 -msgid "That username or email address could not be found." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" +#: airtime_mvc/application/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" msgstr "" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" +#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 #, php-format -msgid "Use %s Authentication:" +msgid "The value should be less than %s characters" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -msgid "days" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" msgstr "" #: airtime_mvc/application/forms/AddShowRepeats.php:10 @@ -2629,8 +3874,9 @@ msgid "day of the week" msgstr "" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "" @@ -2646,77 +3892,9 @@ msgstr "" msgid "Please select a repeat day" 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/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -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:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" msgstr "" #: airtime_mvc/application/forms/AddShowWhen.php:16 @@ -2727,6 +3905,7 @@ msgstr "" msgid "Start Time:" msgstr "" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "" @@ -2735,12 +3914,6 @@ msgstr "" msgid "End Time:" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "" @@ -2758,7 +3931,7 @@ msgid "Cannot modify start date/time of the show that is already started" msgstr "" #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "" @@ -2774,32 +3947,17 @@ msgstr "" msgid "Cannot have duration greater than 24h" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -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/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "" #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "" @@ -2820,8 +3978,6 @@ msgstr "" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "" @@ -2845,112 +4001,159 @@ msgid "User Type:" msgstr "" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "" -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" msgstr "" -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" msgstr "" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 +msgid "Day must be specified" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 +msgid "Time must be specified" msgstr "" -#: airtime_mvc/application/forms/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" +#: 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/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" msgstr "" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "" @@ -2959,12 +4162,10 @@ msgid "Station Description" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "" @@ -2987,93 +4188,82 @@ msgstr "" msgid "Default Fade Out (s):" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:120 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:111 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgid "Intro Autoloading Playlist" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public LibreTime API" +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 -msgid "Required for embeddable schedule widget." +msgid "Overwrite Podcast Episode Metatags" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" 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" +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" msgstr "" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 @@ -3118,16 +4308,6 @@ msgstr "" msgid "Show Source Mount:" msgstr "" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "" - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3141,24 +4321,96 @@ msgstr "" msgid "Password confirmation does not match your password." msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "" + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" msgstr "" #: airtime_mvc/application/forms/Player.php:14 @@ -3185,279 +4437,53 @@ msgstr "" msgid " - The player does not support Opus streams." msgstr "" -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - #: airtime_mvc/application/forms/Player.php:72 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -msgid "Preview:" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" +#: 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/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "" - -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "" - -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -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:597 -msgid "The value has to be numeric" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -msgid "Default License:" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -msgid "The work is in the public domain" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -msgid "Creative Commons Attribution" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -msgid "Creative Commons Attribution Noncommercial" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -msgid "Creative Commons Attribution Share Alike" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" msgstr "" #: airtime_mvc/application/forms/StreamSetting.php:26 @@ -3536,379 +4562,636 @@ msgstr "" msgid "Custom / 3rd Party Streaming" msgstr "" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -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/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -msgid "Set Cue In" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -msgid "Set Cue Out" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read on to find out more." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -" is easier than ever." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -" just a click away, you'll be on air and hands-free in no time." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "" - -#: 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/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/DateHelper.php:213 #, php-format -msgid "%1$s copyright © %2$s All rights reserved.If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:493 +msgid "On Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:494 +msgid "Off Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:495 +msgid "Offline" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:179 -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:183 -msgid "That username or email address could not be found." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" +#: airtime_mvc/application/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" msgstr "" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" +#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 #, php-format -msgid "Use %s Authentication:" +msgid "The value should be less than %s characters" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -msgid "days" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" msgstr "" #: airtime_mvc/application/forms/AddShowRepeats.php:10 @@ -2632,8 +3877,9 @@ msgid "day of the week" msgstr "" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "" @@ -2649,77 +3895,9 @@ msgstr "" msgid "Please select a repeat day" 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/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -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:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" msgstr "" #: airtime_mvc/application/forms/AddShowWhen.php:16 @@ -2730,6 +3908,7 @@ msgstr "" msgid "Start Time:" msgstr "" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "" @@ -2738,12 +3917,6 @@ msgstr "" msgid "End Time:" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "" @@ -2761,7 +3934,7 @@ msgid "Cannot modify start date/time of the show that is already started" msgstr "" #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "" @@ -2777,32 +3950,17 @@ msgstr "" msgid "Cannot have duration greater than 24h" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -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/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "" #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "" @@ -2823,8 +3981,6 @@ msgstr "" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "" @@ -2848,112 +4004,159 @@ msgid "User Type:" msgstr "" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "" -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" msgstr "" -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" msgstr "" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 +msgid "Day must be specified" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 +msgid "Time must be specified" msgstr "" -#: airtime_mvc/application/forms/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" +#: 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/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" msgstr "" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "" @@ -2962,12 +4165,10 @@ msgid "Station Description" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "" @@ -2990,93 +4191,82 @@ msgstr "" msgid "Default Fade Out (s):" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:120 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:111 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgid "Intro Autoloading Playlist" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public LibreTime API" +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 -msgid "Required for embeddable schedule widget." +msgid "Overwrite Podcast Episode Metatags" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" 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" +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" msgstr "" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 @@ -3121,16 +4311,6 @@ msgstr "" msgid "Show Source Mount:" msgstr "" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "" - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3144,24 +4324,96 @@ msgstr "" msgid "Password confirmation does not match your password." msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "" + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" msgstr "" #: airtime_mvc/application/forms/Player.php:14 @@ -3188,279 +4440,53 @@ msgstr "" msgid " - The player does not support Opus streams." msgstr "" -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - #: airtime_mvc/application/forms/Player.php:72 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -msgid "Preview:" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" +#: 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/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "" - -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "" - -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -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:597 -msgid "The value has to be numeric" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -msgid "Default License:" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -msgid "The work is in the public domain" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -msgid "Creative Commons Attribution" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -msgid "Creative Commons Attribution Noncommercial" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -msgid "Creative Commons Attribution Share Alike" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" msgstr "" #: airtime_mvc/application/forms/StreamSetting.php:26 @@ -3539,379 +4565,636 @@ msgstr "" msgid "Custom / 3rd Party Streaming" msgstr "" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -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/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -msgid "Set Cue In" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -msgid "Set Cue Out" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read on to find out more." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -" is easier than ever." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -" just a click away, you'll be on air and hands-free in no time." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "" - -#: 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/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/DateHelper.php:213 #, php-format -msgid "%1$s copyright © %2$s All rights reserved.If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:493 +msgid "On Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:494 +msgid "Off Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:495 +msgid "Offline" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:179 -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:183 -msgid "That username or email address could not be found." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" +#: airtime_mvc/application/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" msgstr "" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" +#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 #, php-format -msgid "Use %s Authentication:" +msgid "The value should be less than %s characters" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -msgid "days" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" msgstr "" #: airtime_mvc/application/forms/AddShowRepeats.php:10 @@ -2632,8 +3876,9 @@ msgid "day of the week" msgstr "" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "" @@ -2649,77 +3894,9 @@ msgstr "" msgid "Please select a repeat day" 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/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -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:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" msgstr "" #: airtime_mvc/application/forms/AddShowWhen.php:16 @@ -2730,6 +3907,7 @@ msgstr "" msgid "Start Time:" msgstr "" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "" @@ -2738,12 +3916,6 @@ msgstr "" msgid "End Time:" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "" @@ -2761,7 +3933,7 @@ msgid "Cannot modify start date/time of the show that is already started" msgstr "" #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "" @@ -2777,32 +3949,17 @@ msgstr "" msgid "Cannot have duration greater than 24h" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -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/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "" #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "" @@ -2823,8 +3980,6 @@ msgstr "" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "" @@ -2848,112 +4003,159 @@ msgid "User Type:" msgstr "" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "" -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" msgstr "" -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" msgstr "" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 +msgid "Day must be specified" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 +msgid "Time must be specified" msgstr "" -#: airtime_mvc/application/forms/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" +#: 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/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" msgstr "" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "" @@ -2962,12 +4164,10 @@ msgid "Station Description" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "" @@ -2990,93 +4190,82 @@ msgstr "" msgid "Default Fade Out (s):" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:120 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:111 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgid "Intro Autoloading Playlist" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public LibreTime API" +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 -msgid "Required for embeddable schedule widget." +msgid "Overwrite Podcast Episode Metatags" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" 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" +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" msgstr "" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 @@ -3121,16 +4310,6 @@ msgstr "" msgid "Show Source Mount:" msgstr "" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "" - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3144,24 +4323,96 @@ msgstr "" msgid "Password confirmation does not match your password." msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "" + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" msgstr "" #: airtime_mvc/application/forms/Player.php:14 @@ -3188,279 +4439,53 @@ msgstr "" msgid " - The player does not support Opus streams." msgstr "" -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - #: airtime_mvc/application/forms/Player.php:72 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -msgid "Preview:" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" +#: 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/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "" - -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "" - -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -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:597 -msgid "The value has to be numeric" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -msgid "Default License:" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -msgid "The work is in the public domain" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -msgid "Creative Commons Attribution" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -msgid "Creative Commons Attribution Noncommercial" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -msgid "Creative Commons Attribution Share Alike" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" msgstr "" #: airtime_mvc/application/forms/StreamSetting.php:26 @@ -3539,379 +4564,636 @@ msgstr "" msgid "Custom / 3rd Party Streaming" msgstr "" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -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/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -msgid "Set Cue In" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -msgid "Set Cue Out" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read on to find out more." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -" is easier than ever." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -" just a click away, you'll be on air and hands-free in no time." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "" - -#: 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/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/DateHelper.php:213 #, php-format -msgid "%1$s copyright © %2$s All rights reserved.If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:493 +msgid "On Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:494 +msgid "Off Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:495 +msgid "Offline" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:179 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "L' e-mail non può essere inviata. Controlli le impostazioni della sua mail e si accerti che è stata configurata correttamente." - -#: airtime_mvc/application/controllers/LoginController.php:183 -msgid "That username or email address could not be found." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "Nome utente o password forniti errati. Per favore riprovi." - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "Sta visualizzando una versione precedente di %s" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Non può aggiungere tracce al blocco dinamico." - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Non ha i permessi per cancellare la selezione %s(s)." - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "Può solo aggiungere tracce al blocco intelligente." - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "Playlist senza nome" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "Blocco intelligente senza nome" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "Playlist sconosciuta" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "Preferenze aggiornate." - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "Aggiornamento impostazioni assistenza." - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "Support Feedback" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "Aggiornamento impostazioni Stream." - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "il percorso deve essere specificato" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "Problemi con Liquidsoap..." - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "Ritrasmetti show %s da %s a %s" -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" -msgstr "Seleziona cursore" - -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" -msgstr "Rimuovere il cursore" - -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" -msgstr "lo show non esiste" - -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "User aggiunto con successo!" - -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "User aggiornato con successo!" - -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Webstream senza titolo" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" +msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Webstream salvate." +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" +msgstr "Vedi file registrati Metadata" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Valori non validi." +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Carattere inserito non valido" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Il giorno deve essere specificato" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "L'ora dev'essere specificata" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" +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 "Aspettare almeno un'ora prima di ritrasmettere" +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" +msgstr "Edita show" + +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" +msgstr "Non puoi spostare show ripetuti" + +#: airtime_mvc/application/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "Non puoi spostare uno show passato" + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "Non puoi spostare uno show nel passato" + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "Non puoi sovrascrivere gli show" + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Non puoi spostare uno show registrato meno di un'ora prima che sia ritrasmesso." + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Lo show è stato cancellato perché lo show registrato non esiste!" + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Devi aspettare un'ora prima di ritrasmettere." + +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" +msgstr "Riprodotti" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" +#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr "Seleziona criteri" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "Bit Rate (kbps)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "Velocità campione (kHz)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "ore" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "minuti" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "elementi" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "Dinamico" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "Statico" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "Genera contenuto playlist e salva criteri" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "Eseguzione casuale playlist" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Il margine non può essere vuoto o più piccolo di 0" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "Il margine non può superare le 24ore" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "Il valore deve essere un numero intero" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "500 è il limite massimo di elementi che può inserire" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "Devi selezionare da Criteri e Modifica" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "La lunghezza deve essere nel formato '00:00:00'" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Il valore deve essere nel formato (es. 0000-00-00 o 0000-00-00 00:00:00)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "Il valore deve essere numerico" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "Il valore deve essere inferiore a 2147483648" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 #, php-format -msgid "Use %s Authentication:" +msgid "The value should be less than %s characters" +msgstr "Il valore deve essere inferiore a %s caratteri" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" +msgstr "Il valore non deve essere vuoto" + +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "Usa autenticazione clienti:" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "Personalizza nome utente " - -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Personalizza Password" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "Numero ISRC :" + +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" +msgstr "Importa Folder:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "Il campo nome utente non può rimanere vuoto." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" +msgstr "Folder visionati:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "Il campo della password non può rimanere vuoto." - -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -msgid "days" -msgstr "giorni" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" +msgstr "Catalogo non valido" #: airtime_mvc/application/forms/AddShowRepeats.php:10 msgid "Link:" @@ -2637,8 +3882,9 @@ msgid "day of the week" msgstr "" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "Data fine:" @@ -2654,78 +3900,10 @@ msgstr "La data di fine deve essere posteriore a quella di inizio" msgid "Please select a repeat day" msgstr "" -#: airtime_mvc/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Registra da Line In?" - -#: airtime_mvc/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Ritrasmetti?" - -#: airtime_mvc/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "Colore sfondo:" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "Colore testo:" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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 "Rimuovi" - -#: airtime_mvc/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -msgid "Name:" -msgstr "Nome:" - -#: airtime_mvc/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Show senza nome" - -#: airtime_mvc/application/forms/AddShowWhat.php:36 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "URL:" -msgstr "URL:" - -#: airtime_mvc/application/forms/AddShowWhat.php:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "Genere:" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "Descrizione:" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" +msgstr "Il calore richiesto non può rimanere vuoto" #: airtime_mvc/application/forms/AddShowWhen.php:16 msgid "'%value%' does not fit the time format 'HH:mm'" @@ -2735,6 +3913,7 @@ msgstr "'%value%' non si adatta al formato dell'ora 'HH:mm'" msgid "Start Time:" msgstr "" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "" @@ -2743,12 +3922,6 @@ msgstr "" msgid "End Time:" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "Durata:" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "" @@ -2766,7 +3939,7 @@ msgid "Cannot modify start date/time of the show that is already started" msgstr "Non modificare data e ora di inizio degli slot in eseguzione" #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "L'ora e la data finale non possono precedere quelle iniziali" @@ -2782,32 +3955,17 @@ msgstr "Non ci può essere una durata 00h 00m" msgid "Cannot have duration greater than 24h" msgstr "Non ci può essere una durata superiore a 24h" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -msgstr "Non puoi sovrascrivere gli show" - -#: airtime_mvc/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Cerca utenti:" - -#: airtime_mvc/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "Dj:" - #: airtime_mvc/application/forms/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "Username:" #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "Password:" @@ -2828,8 +3986,6 @@ msgstr "Cognome:" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "E-mail:" @@ -2853,112 +4009,159 @@ msgid "User Type:" msgstr "tipo di utente:" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "Il nome utente esiste già ." -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Il calore richiesto non può rimanere vuoto" - -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" msgstr "" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" +msgstr "Usa autenticazione clienti:" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "Personalizza nome utente " + +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Personalizza Password" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "Il campo nome utente non può rimanere vuoto." + +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "Il campo della password non può rimanere vuoto." + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "Data inizio:" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" -msgstr "Titolo:" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" +msgstr "Carattere inserito non valido" -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" -msgstr "Creatore:" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" +msgstr "Cerca utenti:" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" -msgstr "Album:" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" +msgstr "Dj:" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" -msgstr "Anno:" - -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" -msgstr "Etichetta:" - -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" -msgstr "Compositore:" - -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" -msgstr "Conduttore:" - -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" -msgstr "Umore:" - -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" -msgstr "BPM:" - -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" -msgstr "Copyright:" - -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" -msgstr "Numero ISRC :" - -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" -msgstr "Sito web:" - -#: airtime_mvc/application/forms/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" -msgstr "Lingua:" - -#: airtime_mvc/application/forms/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" msgstr "" -#: airtime_mvc/application/forms/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" +msgstr "Tutti i miei show:" + +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" msgstr "" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" +msgstr "Colore sfondo:" + +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" +msgstr "Colore testo:" + +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 +msgid "Day must be specified" +msgstr "Il giorno deve essere specificato" + +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 +msgid "Time must be specified" +msgstr "L'ora dev'essere specificata" + +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Aspettare almeno un'ora prima di ritrasmettere" + +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Show senza nome" + +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "Nome stazione" @@ -2967,12 +4170,10 @@ msgid "Station Description" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "Logo stazione: " #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "Note: La lunghezze superiori a 600x600 saranno ridimensionate." @@ -2995,95 +4196,84 @@ msgstr "" msgid "Default Fade Out (s):" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 -msgid "Overwrite Podcast Episode Metatags" +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:120 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "Disattivato" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" -msgstr "Abilitato" - #: airtime_mvc/application/forms/GeneralPreferences.php:111 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgid "Intro Autoloading Playlist" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public LibreTime API" +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 -msgid "Required for embeddable schedule widget." +msgid "Overwrite Podcast Episode Metatags" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "La settimana inizia il" -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' non è valido l'indirizzo e-mail nella forma base local-part@hostname" +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" +msgstr "Registra da Line In?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' non va bene con il formato data '%formato%'" +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" +msgstr "Ritrasmetti?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' è più corto di %min% caratteri" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' è più lungo di %max% caratteri" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' non è tra '%min%' e '%max%' compresi" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" msgstr "" +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" +msgstr "Reimposta password" + #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 msgid "Auto Switch Off:" msgstr "" @@ -3126,16 +4316,6 @@ msgstr "" msgid "Show Source Mount:" msgstr "" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "Accedi" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "Digita le parole del riquadro." - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3149,24 +4329,96 @@ msgstr "Conferma nuova password" msgid "Password confirmation does not match your password." msgstr "La password di conferma non corrisponde con la sua password." -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" -msgstr "Nome utente" +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" +msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Reimposta password" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" +msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "giorni" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Attiva:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "Tipo di stream:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "Tipo di servizio:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "Canali:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "1 - Mono" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "2 - Stereo" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "Server" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "Port" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "URL" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "Mount Point" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "Il server non è libero." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "Il port non può essere libero." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "Mount non può essere vuoto con il server Icecast." + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" msgstr "" #: airtime_mvc/application/forms/Player.php:14 @@ -3193,279 +4445,53 @@ msgstr "" msgid " - The player does not support Opus streams." msgstr "" -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - #: airtime_mvc/application/forms/Player.php:72 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -msgid "Preview:" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" -msgstr "Telefono:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" -msgstr "Stazione sito web:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" -msgstr "Paese:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" -msgstr "Città :" - -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" -msgstr "Descrizione stazione:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' non è valido l'indirizzo e-mail nella forma base local-part@hostname" -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "Autorizzo il trattamento dei miei dati personali." +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' non va bene con il formato data '%formato%'" -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' è più corto di %min% caratteri" -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' è più lungo di %max% caratteri" -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "Tutti i miei show:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' non è tra '%min%' e '%max%' compresi" -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr "Seleziona criteri" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "Bit Rate (kbps)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "Descrizione" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "Velocità campione (kHz)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "ore" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "minuti" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "elementi" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "Statico" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "Dinamico" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "Genera contenuto playlist e salva criteri" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "Genere" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "Eseguzione casuale playlist" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "Casuale" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Il margine non può essere vuoto o più piccolo di 0" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "Il margine non può superare le 24ore" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "Il valore deve essere un numero intero" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "500 è il limite massimo di elementi che può inserire" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "Devi selezionare da Criteri e Modifica" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "La lunghezza deve essere nel formato '00:00:00'" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Il valore deve essere nel formato (es. 0000-00-00 o 0000-00-00 00:00:00)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:597 -msgid "The value has to be numeric" -msgstr "Il valore deve essere numerico" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "Il valore deve essere inferiore a 2147483648" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Il valore deve essere inferiore a %s caratteri" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "Il valore non deve essere vuoto" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -msgid "Default License:" -msgstr "Licenza predefinita:" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "Tutti i diritti riservati" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -msgid "The work is in the public domain" -msgstr "Il lavoro è nel dominio pubblico" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Attribution" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -msgid "Creative Commons Attribution Noncommercial" -msgstr "Creative Commons Attribution Noncommercial" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "Creative Commons Attribution No Derivate Works" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -msgid "Creative Commons Attribution Share Alike" -msgstr "Creative Commons Attribution Share Alike" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "Creative Commons Attribution Noncommercial Non Derivate Works" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "Creative Commons Attribution Noncommercial Share Alike" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" msgstr "" #: airtime_mvc/application/forms/StreamSetting.php:26 @@ -3544,381 +4570,636 @@ msgstr "" msgid "Custom / 3rd Party Streaming" msgstr "" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Attiva:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Tipo di stream:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "Velocità di trasmissione: " - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Tipo di servizio:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Canali:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Mono" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Stereo" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Server" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Port" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "Nome" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Mount Point" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Il server non è libero." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "Il port non può essere libero." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Mount non può essere vuoto con il server Icecast." - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "Importa Folder:" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "Folder visionati:" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "Catalogo non valido" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -msgid "Set Cue In" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -msgid "Set Cue Out" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read on to find out more." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -" is easier than ever." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -" just a click away, you'll be on air and hands-free in no time." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/livestream.phtml:9 -#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2 -msgid "Live stream" -msgstr "Live stream" - -#: airtime_mvc/application/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/DateHelper.php:213 #, php-format -msgid "%1$s copyright © %2$s All rights reserved.If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:493 +msgid "On Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:494 +msgid "Off Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:495 +msgid "Offline" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:179 -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:183 -msgid "That username or email address could not be found." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "入力されたユーザー名またはパスワードが誤っています。" - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "%sの古いバージョンを閲覧しています。" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "自動生成スマート・ブロックにトラックを追加することはできません。" - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "選択された%sを削除する権限がありません。" - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "スマートブロックに追加できるのはトラックのみです。" - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "無題のプレイリスト" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "無題のスマートブロック" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "不明なプレイリスト" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "設定が更新されました。" - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "サポート設定が更新されました。" - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "サポートフィードバック" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "配信設定が更新されました。" - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "パスを指定する必要があります" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "Liquidsoapに問題があります。" - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "%sの再配信:%s %s時" -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" -msgstr "カーソルを選択" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" +msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" -msgstr "カーソルを削除" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" +msgstr "録音ファイルは存在しません。" -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" -msgstr "番組が存在しません。" +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" +msgstr "録音ファイルのメタデータを確認" -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "ユーザーの追加に成功しました。" +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "" -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "ユーザーの更新に成功しました。" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "" -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "設定の更新に成功しました。" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" +msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "無題のウェブ配信" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" +msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "ウェブ配信が保存されました。" +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" +msgstr "番組の編集" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "入力欄に無効な値があります。" +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "使用できない文字が入力されました。" +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "日付を指定する必要があります。" +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" +msgstr "許可されていない操作です。" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "時間を指定する必要があります。" +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" +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 "再配信するには、1時間以上待たなければなりません" +#: airtime_mvc/application/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "過去の番組を移動することはできません。" + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "番組を過去の日付に移動することはできません。" + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "番組を重複して予約することはできません。" + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "録音された番組を再配信時間の直前1時間の枠に移動することはできません。" + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "録音された番組が存在しないので番組は削除されました。" + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." +msgstr "再配信には1時間待たなければなりません。" + +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "トラック" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "開始時間" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "終了時間" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" +msgstr "再生済み" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" +#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr "基準を選択してください" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "ビットレート (Kbps)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "サンプリング周波数 (kHz) " + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "時間" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "分" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "項目" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "自動生成スマート・ブロック" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "スマート・ブロック" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "プレイリストコンテンツを生成し、基準を保存" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "プレイリストの内容をシャッフル" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "制限は空欄または0以下には設定できません。" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "制限は24時間以内に設定してください。" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "値は整数である必要があります。" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "設定できるアイテムの最大数は500です。" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "「基準」と「条件」を選択してください。" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "「長さ」は、'00:00:00'の形式で入力してください。" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "値はタイムスタンプの形式に適合する必要があります。 (例: 0000-00-00 or 0000-00-00 00:00:00)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "値は数字である必要があります。" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "値は2147483648未満にする必要があります。" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 #, php-format -msgid "Use %s Authentication:" +msgid "The value should be less than %s characters" +msgstr "値は%s未満にする必要があります。" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" +msgstr "値を入力してください。" + +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "カスタム認証を使用:" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "カスタムユーザー名" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "カスタムパスワード" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "ISRC番号:" + +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" +msgstr "インポートフォルダ:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "ユーザー名を入力してください。" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" +msgstr "同期フォルダ:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "パスワードを入力してください。" - -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -msgid "days" -msgstr "日" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" +msgstr "正しいディレクトリではありません。" #: airtime_mvc/application/forms/AddShowRepeats.php:10 msgid "Link:" @@ -2635,8 +3879,9 @@ msgid "day of the week" msgstr "毎月特定曜日" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "終了日:" @@ -2652,78 +3897,10 @@ msgstr "終了日は開始日より後に設定してください。" msgid "Please select a repeat day" 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/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "背景色:" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "文字色:" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -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 "URL:" - -#: airtime_mvc/application/forms/AddShowWhat.php:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "ジャンル:" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "説明:" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" +msgstr "値を入力してください" #: airtime_mvc/application/forms/AddShowWhen.php:16 msgid "'%value%' does not fit the time format 'HH:mm'" @@ -2733,6 +3910,7 @@ msgstr "'%value%'は、'01:22'の形式に適合していません" msgid "Start Time:" msgstr "" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "" @@ -2741,12 +3919,6 @@ msgstr "" msgid "End Time:" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "長さ:" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "タイムゾーン:" @@ -2764,7 +3936,7 @@ msgid "Cannot modify start date/time of the show that is already started" msgstr "すでに開始されている番組の開始日、開始時間を変更することはできません。" #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "終了日時は過去に設定できません。" @@ -2780,32 +3952,17 @@ msgstr "00h 00mの長さに設定することはできません。" msgid "Cannot have duration greater than 24h" msgstr "24時間を越える長さに設定することはできません。" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -msgstr "番組を重複して予約することはできません。" - -#: airtime_mvc/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "ユーザーを検索:" - -#: airtime_mvc/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "DJ:" - #: airtime_mvc/application/forms/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "ユーザー名:" #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "パスワード:" @@ -2826,8 +3983,6 @@ msgstr "姓:" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "メール:" @@ -2851,112 +4006,159 @@ msgid "User Type:" msgstr "ユーザー種別:" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "ログイン名はすでに使用されています。" -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "値を入力してください" - -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" msgstr "" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" +msgstr "カスタム認証を使用:" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "カスタムユーザー名" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "カスタムパスワード" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "ユーザー名を入力してください。" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "パスワードを入力してください。" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "ステーションのタイムゾーン" + +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "開始日:" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" -msgstr "タイトル:" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" +msgstr "使用できない文字が入力されました。" -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" -msgstr "アーティスト:" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" +msgstr "ユーザーを検索:" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" -msgstr "アルバム:" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" +msgstr "DJ:" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" -msgstr "年:" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" -msgstr "ラベル:" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" +msgstr "全ての番組:" -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" -msgstr "作曲者" +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" -msgstr "コンダクター:" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" +msgstr "背景色:" -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" -msgstr "ムード:" +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" +msgstr "文字色:" -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" -msgstr "BPM:" +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" -msgstr "著作権:" +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" -msgstr "ISRC番号:" +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" -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/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" -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/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" -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 "再配信するには、1時間以上待たなければなりません" -#: airtime_mvc/application/forms/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" -msgstr "終了時間" +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "無題の番組" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "インターフェイスのタイムゾーン:" +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "ステーション名" @@ -2965,12 +4167,10 @@ msgid "Station Description" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "ステーションロゴ:" #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "注意:大きさが600x600以上の場合はサイズが変更されます。" @@ -2993,94 +4193,83 @@ msgstr "デフォルトフェードイン(初期値):" msgid "Default Fade Out (s):" msgstr "デフォルトフェードアウト(初期値):" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 -msgid "Overwrite Podcast Episode Metatags" +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:120 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "無効" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" -msgstr "有効" - #: airtime_mvc/application/forms/GeneralPreferences.php:111 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgid "Intro Autoloading Playlist" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public LibreTime API" +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 -msgid "Required for embeddable schedule widget." +msgid "Overwrite Podcast Episode Metatags" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "ステーションのタイムゾーン" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "週の開始曜日" -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%'は無効なEメールアドレスです。local-part@hostnameの形式に沿ったEメールアドレスを登録してください。" +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" +msgstr "ライン入力から録音" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%'は、'%format%'の日付形式に一致しません。" +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" +msgstr "再配信" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%'は、%min%文字より短くなっています。" +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" +msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%'は、%max%文字を越えています。" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%'は、'%min%'以上'%max%'以下の条件に一致しません。" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "パスワードが一致しません。" +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" +msgstr "パスワードをリセット" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 msgid "Auto Switch Off:" @@ -3124,16 +4313,6 @@ msgstr "" msgid "Show Source Mount:" msgstr "" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "ログイン" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "下記画像の中に見える文字を入力してください。" - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3147,26 +4326,98 @@ msgstr "新しいパスワードを確認してください。" msgid "Password confirmation does not match your password." msgstr "パスワード確認がパスワードと一致しません。" -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" -msgstr "ユーザー名" - -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "パスワードをリセット" - -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" msgstr "" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "日" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "有効:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "配信種別:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "サービスタイプ:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "再生方式" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "1 - モノラル" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "2 - ステレオ" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "サーバー" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "ポート" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "URL" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "マウントポイント" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "管理者" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "管理者パスワード" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "サーバーを入力してください。" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "ポートを入力してください。" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "Icecastサーバーを使用する際はマウント欄を入力してください。" + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "インターフェイスのタイムゾーン:" + #: airtime_mvc/application/forms/Player.php:14 msgid "Now Playing" msgstr "" @@ -3191,280 +4442,54 @@ msgstr "" msgid " - The player does not support Opus streams." msgstr "" -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - #: airtime_mvc/application/forms/Player.php:72 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -msgid "Preview:" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" -msgstr "電話:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" -msgstr "ステーションのウェブサイト:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" -msgstr "国:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" -msgstr "市:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" -msgstr "ステーションの説明:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%'は無効なEメールアドレスです。local-part@hostnameの形式に沿ったEメールアドレスを登録してください。" -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "プライバシーポリシーに同意する必要があります。" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%'は、'%format%'の日付形式に一致しません。" -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%'は、%min%文字より短くなっています。" -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%'は、%max%文字を越えています。" -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "全ての番組:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%'は、'%min%'以上'%max%'以下の条件に一致しません。" -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr "基準を選択してください" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "ビットレート (Kbps)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "説明" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "サンプリング周波数 (kHz) " - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "時間" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "分" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "項目" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "スマート・ブロック" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "自動生成スマート・ブロック" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "プレイリストコンテンツを生成し、基準を保存" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "生成" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "プレイリストの内容をシャッフル" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "シャッフル" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "制限は空欄または0以下には設定できません。" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "制限は24時間以内に設定してください。" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "値は整数である必要があります。" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "設定できるアイテムの最大数は500です。" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "「基準」と「条件」を選択してください。" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "「長さ」は、'00:00:00'の形式で入力してください。" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "値はタイムスタンプの形式に適合する必要があります。 (例: 0000-00-00 or 0000-00-00 00:00:00)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:597 -msgid "The value has to be numeric" -msgstr "値は数字である必要があります。" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "値は2147483648未満にする必要があります。" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "値は%s未満にする必要があります。" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "値を入力してください。" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -msgid "Default License:" -msgstr "ライセンス(初期値):" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "All rights are reserved" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -msgid "The work is in the public domain" -msgstr "The work is in the public domain" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Attribution" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -msgid "Creative Commons Attribution Noncommercial" -msgstr "Creative Commons Attribution Noncommercial" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "Creative Commons Attribution No Derivative Works" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -msgid "Creative Commons Attribution Share Alike" -msgstr "Creative Commons Attribution Share Alike" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "Creative Commons Attribution Noncommercial Non Derivate Works" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "Creative Commons Attribution Noncommercial Share Alike" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" +msgstr "パスワードが一致しません。" #: airtime_mvc/application/forms/StreamSetting.php:26 msgid "Hardware Audio Output:" @@ -3542,381 +4567,636 @@ msgstr "" msgid "Custom / 3rd Party Streaming" msgstr "" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "有効:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "配信種別:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "ビットレート:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "サービスタイプ:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "再生方式" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - モノラル" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - ステレオ" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "サーバー" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "ポート" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "名前" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "マウントポイント" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "管理者" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "管理者パスワード" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "サーバーを入力してください。" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "ポートを入力してください。" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Icecastサーバーを使用する際はマウント欄を入力してください。" - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -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/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "再生" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "停止" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -msgid "Set Cue In" -msgstr "キューインの設定" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -msgid "Set Cue Out" -msgstr "キューアウトの設定" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "カーソル" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read on to find out more." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -" is easier than ever." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -" just a click away, you'll be on air and hands-free in no time." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "" - -#: 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/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/DateHelper.php:213 #, php-format -msgid "%1$s copyright © %2$s All rights reserved.If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:493 +msgid "On Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:494 +msgid "Off Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:495 +msgid "Offline" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:179 -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:183 -msgid "That username or email address could not be found." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" +#: airtime_mvc/application/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" msgstr "" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" +#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 #, php-format -msgid "Use %s Authentication:" +msgid "The value should be less than %s characters" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -msgid "days" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" msgstr "" #: airtime_mvc/application/forms/AddShowRepeats.php:10 @@ -2630,8 +3874,9 @@ msgid "day of the week" msgstr "" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "" @@ -2647,77 +3892,9 @@ msgstr "" msgid "Please select a repeat day" 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/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -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:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" msgstr "" #: airtime_mvc/application/forms/AddShowWhen.php:16 @@ -2728,6 +3905,7 @@ msgstr "" msgid "Start Time:" msgstr "" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "" @@ -2736,12 +3914,6 @@ msgstr "" msgid "End Time:" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "" @@ -2759,7 +3931,7 @@ msgid "Cannot modify start date/time of the show that is already started" msgstr "" #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "" @@ -2775,32 +3947,17 @@ msgstr "" msgid "Cannot have duration greater than 24h" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -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/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "" #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "" @@ -2821,8 +3978,6 @@ msgstr "" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "" @@ -2846,112 +4001,159 @@ msgid "User Type:" msgstr "" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "" -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" msgstr "" -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" msgstr "" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 +msgid "Day must be specified" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 +msgid "Time must be specified" msgstr "" -#: airtime_mvc/application/forms/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" +#: 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/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" msgstr "" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "" @@ -2960,12 +4162,10 @@ msgid "Station Description" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "" @@ -2988,93 +4188,82 @@ msgstr "" msgid "Default Fade Out (s):" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:120 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:111 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgid "Intro Autoloading Playlist" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public LibreTime API" +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 -msgid "Required for embeddable schedule widget." +msgid "Overwrite Podcast Episode Metatags" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" 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" +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" msgstr "" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 @@ -3119,16 +4308,6 @@ msgstr "" msgid "Show Source Mount:" msgstr "" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "" - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3142,24 +4321,96 @@ msgstr "" msgid "Password confirmation does not match your password." msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "" + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" msgstr "" #: airtime_mvc/application/forms/Player.php:14 @@ -3186,279 +4437,53 @@ msgstr "" msgid " - The player does not support Opus streams." msgstr "" -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - #: airtime_mvc/application/forms/Player.php:72 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -msgid "Preview:" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" +#: 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/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "" - -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "" - -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -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:597 -msgid "The value has to be numeric" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -msgid "Default License:" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -msgid "The work is in the public domain" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -msgid "Creative Commons Attribution" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -msgid "Creative Commons Attribution Noncommercial" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -msgid "Creative Commons Attribution Share Alike" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" msgstr "" #: airtime_mvc/application/forms/StreamSetting.php:26 @@ -3537,379 +4562,636 @@ msgstr "" msgid "Custom / 3rd Party Streaming" msgstr "" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -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/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -msgid "Set Cue In" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -msgid "Set Cue Out" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read on to find out more." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -" is easier than ever." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -" just a click away, you'll be on air and hands-free in no time." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "" - -#: 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/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/DateHelper.php:213 #, php-format -msgid "%1$s copyright © %2$s All rights reserved.If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:493 +msgid "On Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:494 +msgid "Off Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:495 +msgid "Offline" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:179 -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:183 -msgid "That username or email address could not be found." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" +#: airtime_mvc/application/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" msgstr "" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" +#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 #, php-format -msgid "Use %s Authentication:" +msgid "The value should be less than %s characters" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -msgid "days" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" msgstr "" #: airtime_mvc/application/forms/AddShowRepeats.php:10 @@ -2632,8 +3876,9 @@ msgid "day of the week" msgstr "" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "" @@ -2649,77 +3894,9 @@ msgstr "" msgid "Please select a repeat day" 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/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -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:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" msgstr "" #: airtime_mvc/application/forms/AddShowWhen.php:16 @@ -2730,6 +3907,7 @@ msgstr "" msgid "Start Time:" msgstr "" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "" @@ -2738,12 +3916,6 @@ msgstr "" msgid "End Time:" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "" @@ -2761,7 +3933,7 @@ msgid "Cannot modify start date/time of the show that is already started" msgstr "" #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "" @@ -2777,32 +3949,17 @@ msgstr "" msgid "Cannot have duration greater than 24h" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -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/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "" #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "" @@ -2823,8 +3980,6 @@ msgstr "" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "" @@ -2848,112 +4003,159 @@ msgid "User Type:" msgstr "" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "" -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" msgstr "" -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" msgstr "" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 +msgid "Day must be specified" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 +msgid "Time must be specified" msgstr "" -#: airtime_mvc/application/forms/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" +#: 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/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" msgstr "" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "" @@ -2962,12 +4164,10 @@ msgid "Station Description" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "" @@ -2990,93 +4190,82 @@ msgstr "" msgid "Default Fade Out (s):" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:120 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:111 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgid "Intro Autoloading Playlist" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public LibreTime API" +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 -msgid "Required for embeddable schedule widget." +msgid "Overwrite Podcast Episode Metatags" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" 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" +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" msgstr "" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 @@ -3121,16 +4310,6 @@ msgstr "" msgid "Show Source Mount:" msgstr "" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "" - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3144,24 +4323,96 @@ msgstr "" msgid "Password confirmation does not match your password." msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "" + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" msgstr "" #: airtime_mvc/application/forms/Player.php:14 @@ -3188,279 +4439,53 @@ msgstr "" msgid " - The player does not support Opus streams." msgstr "" -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - #: airtime_mvc/application/forms/Player.php:72 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -msgid "Preview:" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" +#: 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/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "" - -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "" - -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -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:597 -msgid "The value has to be numeric" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -msgid "Default License:" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -msgid "The work is in the public domain" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -msgid "Creative Commons Attribution" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -msgid "Creative Commons Attribution Noncommercial" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -msgid "Creative Commons Attribution Share Alike" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" msgstr "" #: airtime_mvc/application/forms/StreamSetting.php:26 @@ -3539,379 +4564,636 @@ msgstr "" msgid "Custom / 3rd Party Streaming" msgstr "" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -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/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -msgid "Set Cue In" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -msgid "Set Cue Out" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read on to find out more." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -" is easier than ever." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -" just a click away, you'll be on air and hands-free in no time." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "" - -#: 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/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/DateHelper.php:213 #, php-format -msgid "%1$s copyright © %2$s All rights reserved.If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:493 +msgid "On Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:494 +msgid "Off Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:495 +msgid "Offline" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:179 -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:183 -msgid "That username or email address could not be found." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "아이디와 암호가 맞지 않습니다. 다시 시도해주세요" - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "오래된 %s를 보고 있습니다" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "동적인 스마트 블록에는 트랙을 추가 할수 없습니다" - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "선택하신 %s를 삭제 할수 있는 권한이 부족합니다." - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "스마트 블록에는 트랙만 추가 가능합니다" - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "제목없는 재생목록" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "제목없는 스마트 블록" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "모르는 재생목록" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "설정이 업데이트 되었습니다" - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "지원 설정이 업데이트 되었습니다" - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "사용자 피드백" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "스트림 설정이 업데이트 되었습니다" - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "경로를 입력해주세요" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "Liquidsoap 문제..." - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "%s의 재방송 %s부터 %s까지" -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" -msgstr "커서 선택" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" +msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" -msgstr "커서 제거" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" +msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" -msgstr "쇼가 존재 하지 않음" +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" +msgstr "녹음된 파일의 메타데이타 보기" -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "사용자가 추가 되었습니다!" +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "" -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "사용자 정보가 업데이트 되었습니다!" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "" -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "세팅이 성공적으로 업데이트 되었습니다!" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" +msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "제목없는 웹스트림" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" +msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "웹스트림이 저장 되었습니다" +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" +msgstr "쇼 수정" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "잘못된 값입니다" +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "허용되지 않는 문자입니다" +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "날짜를 설정하세요" +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" +msgstr "권한이 부족합니다" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "시간을 설정하세요" +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" +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 "재방송 설정까지 1시간 기간이 필요합니다" +#: airtime_mvc/application/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "지난 쇼는 이동할수 없습니다" + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "과거로 쇼를 이동할수 없습니다" + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "쇼를 중복되게 스케쥴할수 없습니다" + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "녹화 쇼를 재방송 시작 1시간 안으로 이동할수 없습니다" + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "녹화 쇼가 없으로 쇼가 삭제 되었습니다" + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." +msgstr "녹화 쇼와 재방송 사이에는 1시간의 간격이 필요합니다 " + +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" +msgstr "방송됨" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" +#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr "기준 선택" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "비트 레이트(Kbps)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "샘플 레이트" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "시간" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "분" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "아이템" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "동적(Dynamic)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "정적(Static)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "재생 목록 내용 생성후 설정 저장" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "재생 목록 내용 셔플하기" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "길이 제한은 비어두거나 0으로 설정할수 없습니다" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "길이 제한은 24h 보다 클수 없습니다" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "이 값은 정수(integer) 입니다" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "아이템 곗수의 최대값은 500 입니다" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "기준과 모디파이어를 골라주세요" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "길이는 00:00:00 형태로 입력하세요" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "이 값은 timestamp 형태 (e.g. 0000-00-00 or 0000-00-00 00:00:00) 로 입력해주세요" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "이 값은 숫자만 허용 됩니다" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "이 값은 2147483648보다 작은 수만 허용 됩니다" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 #, php-format -msgid "Use %s Authentication:" +msgid "The value should be less than %s characters" +msgstr "이 값은 %s 문자보다 작은 길이만 허용 됩니다" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" +msgstr "이 값은 비어둘수 없습니다" + +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "Custom 인증 사용" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "Custom 아이디" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Custom 암호" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "ISRC 넘버" + +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" +msgstr "폴더 가져오기" -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "아이디를 입력해주세요" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" +msgstr "모니터중인 폴더" -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "암호를 입력해주세요" - -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -msgid "days" -msgstr "일" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" +msgstr "옳치 않은 폴더 입니다" #: airtime_mvc/application/forms/AddShowRepeats.php:10 msgid "Link:" @@ -2633,8 +3877,9 @@ msgid "day of the week" msgstr "주중 날짜" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "종료" @@ -2650,78 +3895,10 @@ msgstr "종료 일이 시작일 보다 먼져 입니다." msgid "Please select a repeat day" msgstr "" -#: airtime_mvc/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Line In으로 녹음" - -#: airtime_mvc/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "재방송?" - -#: airtime_mvc/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "배경 색:" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "글자 색:" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -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:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "장르:" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "설명:" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" +msgstr "이 필드는 비워둘수 없습니다." #: airtime_mvc/application/forms/AddShowWhen.php:16 msgid "'%value%' does not fit the time format 'HH:mm'" @@ -2731,6 +3908,7 @@ msgstr "'%value%'은 시간 형식('HH:mm')에 맞지 않습니다." msgid "Start Time:" msgstr "" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "" @@ -2739,12 +3917,6 @@ msgstr "" msgid "End Time:" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "길이:" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "시간대:" @@ -2762,7 +3934,7 @@ msgid "Cannot modify start date/time of the show that is already started" msgstr "이미 시작한 쇼의 시작 날짜/시간을 바꿀수 없습니다" #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "종료 날짜/시간을 과거로 설정할수 없습니다" @@ -2778,32 +3950,17 @@ msgstr "길이가 00h 00m인 쇼를 생성 할수 없습니다" msgid "Cannot have duration greater than 24h" msgstr "쇼의 길이가 24h를 넘을수 없습니다" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -msgstr "쇼를 중복되게 스케쥴할수 없습니다" - -#: airtime_mvc/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "사용자 검색:" - -#: airtime_mvc/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "DJ들:" - #: airtime_mvc/application/forms/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "아이디: " #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "암호: " @@ -2824,8 +3981,6 @@ msgstr "성:" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "이메일" @@ -2849,112 +4004,159 @@ msgid "User Type:" msgstr "유저 타입" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "사용할수 없는 아이디 입니다" -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "이 필드는 비워둘수 없습니다." - -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" msgstr "" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" +msgstr "Custom 인증 사용" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "Custom 아이디" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Custom 암호" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "아이디를 입력해주세요" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "암호를 입력해주세요" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "시작" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" -msgstr "제목:" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" +msgstr "허용되지 않는 문자입니다" -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" -msgstr "제작자:" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" +msgstr "사용자 검색:" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" -msgstr "앨범:" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" +msgstr "DJ들:" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" -msgstr "년도:" - -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" -msgstr "상표:" - -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" -msgstr "작곡가:" - -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" -msgstr "지휘자" - -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" -msgstr "무드" - -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" -msgstr "저작권:" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" +msgstr "내 쇼:" -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" -msgstr "ISRC 넘버" - -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" -msgstr "웹사이트" - -#: airtime_mvc/application/forms/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" -msgstr "언어" - -#: airtime_mvc/application/forms/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" msgstr "" -#: airtime_mvc/application/forms/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" +msgstr "배경 색:" + +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" +msgstr "글자 색:" + +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" msgstr "" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" +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 "재방송 설정까지 1시간 기간이 필요합니다" + +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "이름없는 쇼" + +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "방송국 이름" @@ -2963,12 +4165,10 @@ msgid "Station Description" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "방송국 로고" #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "주의: 600*600보다 큰 이미지는 사이즈가 수정 됩니다" @@ -2991,94 +4191,83 @@ msgstr "기본 페이드 인(s)" msgid "Default Fade Out (s):" msgstr "기본 페이드 아웃(s)" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 -msgid "Overwrite Podcast Episode Metatags" +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:120 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "미사용" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" -msgstr "사용" - #: airtime_mvc/application/forms/GeneralPreferences.php:111 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgid "Intro Autoloading Playlist" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public LibreTime API" +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 -msgid "Required for embeddable schedule widget." +msgid "Overwrite Podcast Episode Metatags" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "주 시작일" -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%'은 맞지 않는 이메일 형식 입니다." +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" +msgstr "Line In으로 녹음" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%'은 날짜 형식('%format%')에 맞지 않습니다." +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" +msgstr "재방송?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%'는 %min%글자 보다 짧을수 없습니다" +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" +msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%'는 %max%글자 보다 길수 없습니다" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%'은 '%min%'와 '%max%' 사이에 있지 않습니다." - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "암호가 맞지 않습니다" +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" +msgstr "암호 초기화" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 msgid "Auto Switch Off:" @@ -3122,16 +4311,6 @@ msgstr "" msgid "Show Source Mount:" msgstr "" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "로그인" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "밑에 보이는 그림에 나온 문자를 입력하세요" - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3145,24 +4324,96 @@ msgstr "새 암호 확인" msgid "Password confirmation does not match your password." msgstr "암호와 암호 확인 값이 일치 하지 않습니다." -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" -msgstr "아이디" +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" +msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "암호 초기화" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" +msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "일" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "사용:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "스트림 타입:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "서비스 타입:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "채널:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "1 - 모노" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "2 - 스테레오" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "서버" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "포트" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "마운트 지점" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "관리자 아이디" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "관리자 암호" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "서버를 지정해주세요" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "포트를 지정해주세요" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "Icecast 서버는 마운트 지점을 지정해야 합니다" + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" msgstr "" #: airtime_mvc/application/forms/Player.php:14 @@ -3189,280 +4440,54 @@ msgstr "" msgid " - The player does not support Opus streams." msgstr "" -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - #: airtime_mvc/application/forms/Player.php:72 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -msgid "Preview:" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" -msgstr "전화" - -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" -msgstr "방송국 웹사이트" - -#: airtime_mvc/application/forms/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" -msgstr "나라" - -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" -msgstr "도시" - -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" -msgstr "방송국 설명" - -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%'은 맞지 않는 이메일 형식 입니다." -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "사용자 약관에 동의 하십시오" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%'은 날짜 형식('%format%')에 맞지 않습니다." -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%'는 %min%글자 보다 짧을수 없습니다" -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%'는 %max%글자 보다 길수 없습니다" -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "내 쇼:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%'은 '%min%'와 '%max%' 사이에 있지 않습니다." -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr "기준 선택" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "비트 레이트(Kbps)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "설명" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "샘플 레이트" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "시간" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "분" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "아이템" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "정적(Static)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "동적(Dynamic)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "재생 목록 내용 생성후 설정 저장" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "생성" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "재생 목록 내용 셔플하기" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "셔플" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "길이 제한은 비어두거나 0으로 설정할수 없습니다" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "길이 제한은 24h 보다 클수 없습니다" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "이 값은 정수(integer) 입니다" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "아이템 곗수의 최대값은 500 입니다" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "기준과 모디파이어를 골라주세요" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "길이는 00:00:00 형태로 입력하세요" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "이 값은 timestamp 형태 (e.g. 0000-00-00 or 0000-00-00 00:00:00) 로 입력해주세요" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:597 -msgid "The value has to be numeric" -msgstr "이 값은 숫자만 허용 됩니다" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "이 값은 2147483648보다 작은 수만 허용 됩니다" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "이 값은 %s 문자보다 작은 길이만 허용 됩니다" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "이 값은 비어둘수 없습니다" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -msgid "Default License:" -msgstr "기본 라이센스:" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -msgid "The work is in the public domain" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -msgid "Creative Commons Attribution" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -msgid "Creative Commons Attribution Noncommercial" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -msgid "Creative Commons Attribution Share Alike" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" +msgstr "암호가 맞지 않습니다" #: airtime_mvc/application/forms/StreamSetting.php:26 msgid "Hardware Audio Output:" @@ -3540,381 +4565,636 @@ msgstr "" msgid "Custom / 3rd Party Streaming" msgstr "" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "사용:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "스트림 타입:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "비트 레이트:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "서비스 타입:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "채널:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - 모노" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - 스테레오" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "서버" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "포트" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "이름" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "마운트 지점" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "관리자 아이디" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "관리자 암호" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "서버를 지정해주세요" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "포트를 지정해주세요" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Icecast 서버는 마운트 지점을 지정해야 합니다" - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -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/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "재생" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "정지" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -msgid "Set Cue In" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -msgid "Set Cue Out" -msgstr "큐 아웃 설정" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "커서" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read on to find out more." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -" is easier than ever." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -" just a click away, you'll be on air and hands-free in no time." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "" - -#: 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/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/DateHelper.php:213 #, php-format -msgid "%1$s copyright © %2$s All rights reserved.If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:493 +msgid "On Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:494 +msgid "Off Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:495 +msgid "Offline" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:179 -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:183 -msgid "That username or email address could not be found." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" +#: airtime_mvc/application/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" msgstr "" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" +#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 #, php-format -msgid "Use %s Authentication:" +msgid "The value should be less than %s characters" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -msgid "days" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" msgstr "" #: airtime_mvc/application/forms/AddShowRepeats.php:10 @@ -2633,8 +3879,9 @@ msgid "day of the week" msgstr "" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "" @@ -2650,77 +3897,9 @@ msgstr "" msgid "Please select a repeat day" 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/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -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:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" msgstr "" #: airtime_mvc/application/forms/AddShowWhen.php:16 @@ -2731,6 +3910,7 @@ msgstr "" msgid "Start Time:" msgstr "" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "" @@ -2739,12 +3919,6 @@ msgstr "" msgid "End Time:" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "" @@ -2762,7 +3936,7 @@ msgid "Cannot modify start date/time of the show that is already started" msgstr "" #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "" @@ -2778,32 +3952,17 @@ msgstr "" msgid "Cannot have duration greater than 24h" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -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/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "" #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "" @@ -2824,8 +3983,6 @@ msgstr "" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "" @@ -2849,112 +4006,159 @@ msgid "User Type:" msgstr "" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "" -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" msgstr "" -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" msgstr "" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 +msgid "Day must be specified" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 +msgid "Time must be specified" msgstr "" -#: airtime_mvc/application/forms/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" +#: 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/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" msgstr "" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "" @@ -2963,12 +4167,10 @@ msgid "Station Description" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "" @@ -2991,93 +4193,82 @@ msgstr "" msgid "Default Fade Out (s):" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:120 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:111 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgid "Intro Autoloading Playlist" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public LibreTime API" +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 -msgid "Required for embeddable schedule widget." +msgid "Overwrite Podcast Episode Metatags" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" 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" +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" msgstr "" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 @@ -3122,16 +4313,6 @@ msgstr "" msgid "Show Source Mount:" msgstr "" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "" - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3145,24 +4326,96 @@ msgstr "" msgid "Password confirmation does not match your password." msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "" + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" msgstr "" #: airtime_mvc/application/forms/Player.php:14 @@ -3189,279 +4442,53 @@ msgstr "" msgid " - The player does not support Opus streams." msgstr "" -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - #: airtime_mvc/application/forms/Player.php:72 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -msgid "Preview:" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" +#: 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/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "" - -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "" - -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -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:597 -msgid "The value has to be numeric" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -msgid "Default License:" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -msgid "The work is in the public domain" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -msgid "Creative Commons Attribution" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -msgid "Creative Commons Attribution Noncommercial" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -msgid "Creative Commons Attribution Share Alike" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" msgstr "" #: airtime_mvc/application/forms/StreamSetting.php:26 @@ -3540,379 +4567,636 @@ msgstr "" msgid "Custom / 3rd Party Streaming" msgstr "" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -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/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -msgid "Set Cue In" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -msgid "Set Cue Out" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read on to find out more." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -" is easier than ever." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -" just a click away, you'll be on air and hands-free in no time." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "" - -#: 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/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/DateHelper.php:213 #, php-format -msgid "%1$s copyright © %2$s All rights reserved.If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:493 +msgid "On Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:494 +msgid "Off Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:495 +msgid "Offline" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "Voer uw gebruikersnaam en wachtwoord." - -#: airtime_mvc/application/controllers/LoginController.php:179 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "E-mail kan niet worden verzonden. Controleer de instellingen van uw e-mailserver en controleer dat goed is geconfigureerd." - -#: airtime_mvc/application/controllers/LoginController.php:183 -msgid "That username or email address could not be found." +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "Er was een probleem met de gebruikersnaam of email adres dat u hebt ingevoerd." - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "Onjuiste gebruikersnaam of wachtwoord opgegeven. Probeer het opnieuw." - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "U bekijkt een oudere versie van %s" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "U kunt nummers toevoegen aan dynamische blokken." - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Je hebt geen toestemming om te verwijderen van de geselecteerde %s(s)" - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "U kunt alleen nummers toevoegen aan smart blok." - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "Naamloze afspeellijst" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "Naamloze slimme block" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "Onbekende afspeellijst" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "Voorkeuren bijgewerkt." - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "Instelling bijgewerkt ondersteunt." - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "Ondersteuning Feedback" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "Stream vaststelling van bijgewerkte." - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "pad moet worden opgegeven" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "Probleem met Liquidsoap..." - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "Verzoek methode niet geaccepteerd" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "Rebroadcast van show %s van %s in %s" -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" -msgstr "Selecteer cursor" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" +msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" -msgstr "Cursor verwijderen" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" +msgstr "Record bestand bestaat niet" -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" -msgstr "show bestaat niet" +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" +msgstr "Weergave opgenomen bestand Metadata" -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "gebruiker Succesvol Toegevoegd" +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "Schema Tracks" -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "gebruiker Succesvol bijgewerkt" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "Wissen show" -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "Instellingen met succes bijgewerkt!" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" +msgstr "Annuleren show" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Naamloze Webstream" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" +msgstr "Aanleg bewerken" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Webstream opgeslagen." +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" +msgstr "Bewerken van Show" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Ongeldige formulierwaarden." +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" +msgstr "Exemplaar verwijderen" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Ongeldig teken ingevoerd" +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" +msgstr "Exemplaar verwijderen en alle volgende" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Dag moet worden opgegeven" +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" +msgstr "Toestemming geweigerd" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "Tijd moet worden opgegeven" +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" +msgstr "Kan niet slepen en neerzetten herhalende shows" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Ten minste 1 uur opnieuw uitzenden moet wachten" +#: airtime_mvc/application/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "Een verleden Show verplaatsen niet" + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "Niet verplaatsen show in verleden" + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "kan Niet gepland overlappen shows" + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Een opgenomen programma minder dan 1 uur vóór haar rebroadcasts verplaatsen niet." + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Toon is verwijderd omdat opgenomen programma niet bestaat!" + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Moet wachten 1 uur opnieuw uitzenden.." + +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "track" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "Begintijd" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "Eindtijd" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" +msgstr "Gespeeld" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" +#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr "Selecteer criteria" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "Bit Rate (kbps)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "Sample Rate (kHz)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "Uren" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "minuten" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "artikelen" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "Dynamisch" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "status" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "Genereren van inhoud van de afspeellijst en criteria opslaan" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "Shuffle afspeellijst inhoud" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Limiet kan niet leeg zijn of kleiner is dan 0" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "Limiet mag niet meer dan 24 uur" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "De waarde moet een geheel getal" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "500 is de grenswaarde max object die kunt u instellen" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "U moet Criteria en Modifier selecteren" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "'Lengte' moet in ' 00:00:00 ' formaat" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "De waarde moet in timestamp indeling (bijvoorbeeld 0000-00-00 of 0000-00-00 00:00:00)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "De waarde moet worden numerieke" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "De waarde moet minder dan 2147483648" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 #, php-format -msgid "Use %s Authentication:" -msgstr "verificatie %s gebruiken:" +msgid "The value should be less than %s characters" +msgstr "De waarde moet kleiner zijn dan %s tekens" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "Gebruik aangepaste verificatie:" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" +msgstr "Waarde kan niet leeg" -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "Aangepaste gebruikersnaam" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Aangepaste wachtwoord" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "ISRC nummer:" + +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "Veld Gebruikersnaam mag niet leeg." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" +msgstr "mappen importeren" -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "veld wachtwoord mag niet leeg." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" +msgstr "Gecontroleerde mappen:" -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -msgid "days" -msgstr "dagen" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" +msgstr "Niet een geldige map" #: airtime_mvc/application/forms/AddShowRepeats.php:10 msgid "Link:" @@ -2639,8 +3882,9 @@ msgid "day of the week" msgstr "Dag van de week" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "datum einde" @@ -2656,78 +3900,10 @@ msgstr "Einddatum moet worden na begindatum ligt" msgid "Please select a repeat day" msgstr "Selecteer een Herhaal dag" -#: airtime_mvc/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Opnemen vanaf de lijn In?" - -#: airtime_mvc/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Rebroadcast?" - -#: airtime_mvc/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "achtergrond kleur" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "tekst kleur" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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 "verwijderen" - -#: airtime_mvc/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -msgid "Name:" -msgstr "naam" - -#: airtime_mvc/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -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 "URL" - -#: airtime_mvc/application/forms/AddShowWhat.php:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "genre:" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "Omschrijving:" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" +msgstr "Waarde is vereist en mag niet leeg zijn" #: airtime_mvc/application/forms/AddShowWhen.php:16 msgid "'%value%' does not fit the time format 'HH:mm'" @@ -2737,6 +3913,7 @@ msgstr "'%value%' past niet de tijdnotatie 'UU:mm'" msgid "Start Time:" msgstr "" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "" @@ -2745,12 +3922,6 @@ msgstr "" msgid "End Time:" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "Looptijd:" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "tijdzone:" @@ -2768,7 +3939,7 @@ msgid "Cannot modify start date/time of the show that is already started" msgstr "Start datum/tijd van de show die is al gestart wijzigen niet" #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "Eind datum/tijd mogen niet in het verleden" @@ -2784,32 +3955,17 @@ msgstr "Kan niet hebben duur 00h 00m" msgid "Cannot have duration greater than 24h" msgstr "Duur groter is dan 24h kan niet hebben" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -msgstr "kan Niet gepland overlappen shows" - -#: airtime_mvc/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "zoek gebruikers" - -#: airtime_mvc/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "DJs:" - #: airtime_mvc/application/forms/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "gebuikersnaam" #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "wachtwoord" @@ -2830,8 +3986,6 @@ msgstr "achternaam" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "e-mail" @@ -2855,112 +4009,159 @@ msgid "User Type:" msgstr "Gebruiker Type :" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "Login naam is niet uniek." -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Waarde is vereist en mag niet leeg zijn" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" +msgstr "verificatie %s gebruiken:" -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" +msgstr "Gebruik aangepaste verificatie:" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "Aangepaste gebruikersnaam" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Aangepaste wachtwoord" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" msgstr "" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "Veld Gebruikersnaam mag niet leeg." + +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "veld wachtwoord mag niet leeg." + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "station tijdzone" + +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "datum start" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" -msgstr "Titel" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" +msgstr "Ongeldig teken ingevoerd" -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" -msgstr "Aangemaakt door" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" +msgstr "zoek gebruikers" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" -msgstr "Album" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" +msgstr "DJs:" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" -msgstr "Jaar" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" -msgstr "label" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" +msgstr "al mij shows" -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" -msgstr "schrijver van een muziekwerk" +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" -msgstr "Conductor:" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" +msgstr "achtergrond kleur" -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" -msgstr "Mood:" +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" +msgstr "tekst kleur" -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" -msgstr "BPM:" +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" -msgstr "Copyright:" +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" -msgstr "ISRC nummer:" +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" -msgstr "Website:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 +msgid "Day must be specified" +msgstr "Dag moet worden opgegeven" -#: airtime_mvc/application/forms/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" -msgstr "Taal:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 +msgid "Time must be specified" +msgstr "Tijd moet worden opgegeven" -#: airtime_mvc/application/forms/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" -msgstr "Begintijd" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Ten minste 1 uur opnieuw uitzenden moet wachten" -#: airtime_mvc/application/forms/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" -msgstr "Eindtijd" +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Zonder titel show" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Interface tijdzone:" +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "station naam" @@ -2969,12 +4170,10 @@ msgid "Station Description" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "Station Logo:" #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "Opmerking: Om het even wat groter zijn dan 600 x 600 zal worden aangepast." @@ -2997,94 +4196,83 @@ msgstr "standaard fade in (s):" msgid "Default Fade Out (s):" msgstr "standaard fade uit (s):" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 -msgid "Overwrite Podcast Episode Metatags" +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:120 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "Uitgeschakeld" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" -msgstr "Ingeschakeld" - #: airtime_mvc/application/forms/GeneralPreferences.php:111 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgid "Intro Autoloading Playlist" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public LibreTime API" +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 -msgid "Required for embeddable schedule widget." +msgid "Overwrite Podcast Episode Metatags" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "station tijdzone" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "Week start aan" -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' is geen geldig e-mailadres in de basis formaat lokale-onderdeel @ hostnaam" +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" +msgstr "Opnemen vanaf de lijn In?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' past niet in de datumnotatie '%format%'" +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" +msgstr "Rebroadcast?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' is minder dan %min% tekens lang" +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" +msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -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 "'%value%' is niet tussen '%min%' en '%max%', inclusief" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "Wachtwoorden komen niet overeen." +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" +msgstr "Reset wachtwoord" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 msgid "Auto Switch Off:" @@ -3128,16 +4316,6 @@ msgstr "" msgid "Show Source Mount:" msgstr "" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "Inloggen" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "Typ de tekens die u ziet in de afbeelding hieronder." - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3151,26 +4329,98 @@ msgstr "Bevestig nieuw wachtwoord" msgid "Password confirmation does not match your password." msgstr "Wachtwoord bevestiging komt niet overeen met uw wachtwoord." -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" -msgstr "gebuikersnaam" - -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Reset wachtwoord" - -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" msgstr "" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "dagen" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Ingeschakeld" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "Stream Type:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "Service Type:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "kanalen:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "1- Mono" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "2 - Stereo" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "Server" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "poort" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "URL" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "Aankoppelpunt" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "admin gebuiker " + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "admin wachtwoord " + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "Server kan niet leeg zijn" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "poort kan niet leeg zijn" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "Mount kan niet leeg zijn met Icecast server" + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "Interface tijdzone:" + #: airtime_mvc/application/forms/Player.php:14 msgid "Now Playing" msgstr "Nu spelen" @@ -3195,280 +4445,54 @@ msgstr "" msgid " - The player does not support Opus streams." msgstr "" -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - #: airtime_mvc/application/forms/Player.php:72 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -msgid "Preview:" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" -msgstr "Telefoon" - -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" -msgstr "Station Web Site:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" -msgstr "Land:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" -msgstr "plaats" - -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" -msgstr "Beschrijving van het station:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" -msgstr "Promoot mijn station aan %s" - -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "Door dit vakje aan, ik ga akkoord met %s's van %s privacy beleid %s" - -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "Je moet eens met privacy policy." - -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' is geen geldig e-mailadres in de basis formaat lokale-onderdeel @ hostnaam" -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "al mij shows" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' past niet in de datumnotatie '%format%'" -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' is minder dan %min% tekens lang" -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr "Selecteer criteria" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' is meer dan %max% karakters lang" -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "Bit Rate (kbps)" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' is niet tussen '%min%' en '%max%', inclusief" -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "Beschrijving" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "Sample Rate (kHz)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "Uren" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "minuten" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "artikelen" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "status" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "Dynamisch" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "Genereren van inhoud van de afspeellijst en criteria opslaan" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "Genereren" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "Shuffle afspeellijst inhoud" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "Shuffle" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Limiet kan niet leeg zijn of kleiner is dan 0" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "Limiet mag niet meer dan 24 uur" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "De waarde moet een geheel getal" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "500 is de grenswaarde max object die kunt u instellen" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "U moet Criteria en Modifier selecteren" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "'Lengte' moet in ' 00:00:00 ' formaat" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "De waarde moet in timestamp indeling (bijvoorbeeld 0000-00-00 of 0000-00-00 00:00:00)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:597 -msgid "The value has to be numeric" -msgstr "De waarde moet worden numerieke" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "De waarde moet minder dan 2147483648" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "De waarde moet kleiner zijn dan %s tekens" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "Waarde kan niet leeg" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -msgid "Default License:" -msgstr "Standaard licentie:" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "Alle rechten voorbehouden" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -msgid "The work is in the public domain" -msgstr "Het werk bestaat uit het publieke domein" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -msgid "Creative Commons Attribution" -msgstr "Creatief Commons Attribution" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -msgid "Creative Commons Attribution Noncommercial" -msgstr "Creative Commons Attribution Noncommercial" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "Creative Commons Naamsvermelding geen afgeleide werken" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -msgid "Creative Commons Attribution Share Alike" -msgstr "Creative Commons Naamsvermelding Gelijk delen" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "Creative Commons Naamsvermelding nietcommerciële niet afgeleide werken" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "Creatief Meent Auteursvermelding niet-commerciële Deel Zowel" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" +msgstr "Wachtwoorden komen niet overeen." #: airtime_mvc/application/forms/StreamSetting.php:26 msgid "Hardware Audio Output:" @@ -3546,381 +4570,638 @@ msgstr "" msgid "Custom / 3rd Party Streaming" msgstr "" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Ingeschakeld" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Stream Type:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "Bit Rate:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Service Type:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "kanalen:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1- Mono" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Stereo" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Server" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "poort" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "naam" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Aankoppelpunt" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "admin gebuiker " - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "admin wachtwoord " - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Server kan niet leeg zijn" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "poort kan niet leeg zijn" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Mount kan niet leeg zijn met Icecast server" - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "mappen importeren" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "Gecontroleerde mappen:" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "Niet een geldige map" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "Play" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "Stop" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -msgid "Set Cue In" -msgstr "Set Cue In" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -msgid "Set Cue Out" -msgstr "Set Cue Out" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "Cursor" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read on to find out more." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -" is easier than ever." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -" just a click away, you'll be on air and hands-free in no time." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/livestream.phtml:9 -#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2 -msgid "Live stream" -msgstr "Live stream" - -#: airtime_mvc/application/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/DateHelper.php:213 #, php-format -msgid "%1$s copyright © %2$s All rights reserved.If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:493 +msgid "On Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:494 +msgid "Off Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:495 +msgid "Offline" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:179 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "Email nie został wysłany. Sprawdź swoje ustawienia serwera pocztowego i upewnij się, że został skonfigurowany poprawnie." - -#: airtime_mvc/application/controllers/LoginController.php:183 -msgid "That username or email address could not be found." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "Błędna nazwa użytkownika lub hasło. Spróbuj ponownie." - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "Przeglądasz starszą wersję %s" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Nie można dodać ścieżek do bloków dynamicznych" - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Nie masz pozwolenia na usunięcie wybranych %s(s)" - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "Utwory mogą być dodane tylko do smartblocku" - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "Lista odtwarzania bez tytułu" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "Smartblock bez tytułu" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "Nieznana playlista" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "Zaktualizowano preferencje." - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "Zaktualizowano ustawienia wsparcia." - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "Informacja zwrotna" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "Zaktualizowano ustawienia strumienia" - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "należy okreslić ścieżkę" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "Problem z Liquidsoap..." - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "Retransmisja audycji %s z %s o %s" -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" -msgstr "Wybierz kursor" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" +msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" -msgstr "Usuń kursor" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" +msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" -msgstr "audycja nie istnieje" +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" +msgstr "Przeglądaj metadane nagrania" -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "Użytkownik został dodany poprawnie!" +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "" -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "Użytkownik został poprawnie zaktualizowany!" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "" -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "Ustawienia zostały poprawnie zaktualizowane!" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" +msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Webstream bez nazwy" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" +msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Zapisano webstream" +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" +msgstr "Edytuj audycję" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Nieprawidłowe wartości formularzy" +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Wprowadzony znak jest nieprawidłowy" +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Należy określić dzień" +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "Należy określić czas" +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" +msgstr "Nie można użyć metody 'przeciągnij i upuść' dla powtórek audycji." -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Należy odczekać przynajmniej 1 godzinę przed ponownym odtworzeniem" +#: airtime_mvc/application/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "Nie można przenieść audycji archiwalnej" + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "Nie można przenieść audycji w przeszłość" + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "Nie można planować nakładających się audycji" + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Nagrywana audycja nie może zostać przeniesiona na mniej niż 1h przed jej powtórką." + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Audycja została usunięta, ponieważ nagranie nie istnieje!" + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Należy odczekać 1 godzinę przed ponownym odtworzeniem." + +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" +msgstr "Odtwarzane" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" +#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr "Wybierz kryteria" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "Bit Rate (Kbps)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "Częstotliwość próbkowania (kHz)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "godzin(y)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "minut(y)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "elementy" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "Dynamiczny" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "Statyczny" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "Tworzenie zawartości listy odtwarzania i zapisz kryteria" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "Losowa kolejność odtwarzania" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Limit nie może być pusty oraz mniejszy od 0" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "Limit nie może być większy niż 24 godziny" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "Wartość powinna być liczbą całkowitą" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "Maksymalna liczba elementów do ustawienia to 500" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "Należy wybrać kryteria i modyfikator" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "Długość powinna być wprowadzona w formacie '00:00:00'" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Wartość powinna byc zapisana w formacie timestamp (np. 0000-00-00 lub 0000-00-00 00:00:00)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "Wartość musi być liczbą" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "Wartość powinna być mniejsza niż 2147483648" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 #, php-format -msgid "Use %s Authentication:" +msgid "The value should be less than %s characters" +msgstr "Wartość powinna posiadać mniej niż %s znaków" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" +msgstr "Wartość nie może być pusta" + +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "Zastosuj własne uwierzytelnienie:" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "Nazwa użytkownika" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Hasło" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "Numer ISRC:" + +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" +msgstr "Katalog importu:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "Pole nazwy użytkownika nie może być puste." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" +msgstr "Katalogi obserwowane:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "Pole hasła nie może być puste." - -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -msgid "days" -msgstr "dni" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" +msgstr "Nieprawidłowy katalog" #: airtime_mvc/application/forms/AddShowRepeats.php:10 msgid "Link:" @@ -2636,8 +3882,9 @@ msgid "day of the week" msgstr "" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "Data zakończenia:" @@ -2653,78 +3900,10 @@ msgstr "Data końcowa musi występować po dacie początkowej" msgid "Please select a repeat day" msgstr "" -#: airtime_mvc/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Nagrywać z wejścia liniowego?" - -#: airtime_mvc/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Odtwarzać ponownie?" - -#: airtime_mvc/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "Kolor tła:" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "Kolor tekstu:" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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 "Usuń" - -#: airtime_mvc/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -msgid "Name:" -msgstr "Nazwa:" - -#: airtime_mvc/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Audycja bez nazwy" - -#: airtime_mvc/application/forms/AddShowWhat.php:36 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "URL:" -msgstr "Adres URL" - -#: airtime_mvc/application/forms/AddShowWhat.php:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "Rodzaj:" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "Opis:" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" +msgstr "Pole jest wymagane i nie może być puste" #: airtime_mvc/application/forms/AddShowWhen.php:16 msgid "'%value%' does not fit the time format 'HH:mm'" @@ -2734,6 +3913,7 @@ msgstr "%value% nie odpowiada formatowi 'HH:mm'" msgid "Start Time:" msgstr "" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "" @@ -2742,12 +3922,6 @@ msgstr "" msgid "End Time:" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "Czas trwania:" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "Strefa czasowa:" @@ -2765,7 +3939,7 @@ msgid "Cannot modify start date/time of the show that is already started" msgstr "Nie mozna zmienić daty/czasu audycji, która się już rozpoczęła" #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "Data lub czas zakończenia nie może być z przeszłości." @@ -2781,32 +3955,17 @@ msgstr "Czas trwania nie może wynosić 00h 00m" msgid "Cannot have duration greater than 24h" msgstr "Czas trwania nie może być dłuższy niż 24h" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -msgstr "Nie można planować nakładających się audycji" - -#: airtime_mvc/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Szukaj Użytkowników:" - -#: airtime_mvc/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "Prowadzący:" - #: airtime_mvc/application/forms/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "Nazwa użytkownika:" #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "Hasło:" @@ -2827,8 +3986,6 @@ msgstr "Nazwisko:" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "Email:" @@ -2852,112 +4009,159 @@ msgid "User Type:" msgstr "Typ użytkownika:" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "Nazwa użytkownika musi być unikalna." -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Pole jest wymagane i nie może być puste" - -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" msgstr "" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" +msgstr "Zastosuj własne uwierzytelnienie:" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "Nazwa użytkownika" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Hasło" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "Pole nazwy użytkownika nie może być puste." + +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "Pole hasła nie może być puste." + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "Data rozpoczęcia:" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" -msgstr "Tytuł:" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" +msgstr "Wprowadzony znak jest nieprawidłowy" -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" -msgstr "Autor:" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" +msgstr "Szukaj Użytkowników:" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" -msgstr "Album:" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" +msgstr "Prowadzący:" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" -msgstr "Rok:" - -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" -msgstr "Wydawnictwo:" - -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" -msgstr "Kompozytor:" - -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" -msgstr "Dyrygent/Pod batutą:" - -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" -msgstr "Nastrój:" - -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" -msgstr "BPM:" - -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" -msgstr "Prawa autorskie:" - -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" -msgstr "Numer ISRC:" - -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" -msgstr "Strona internetowa:" - -#: airtime_mvc/application/forms/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" -msgstr "Język:" - -#: airtime_mvc/application/forms/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" msgstr "" -#: airtime_mvc/application/forms/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" +msgstr "Wszystkie moje audycje:" + +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" msgstr "" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" +msgstr "Kolor tła:" + +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" +msgstr "Kolor tekstu:" + +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 +msgid "Day must be specified" +msgstr "Należy określić dzień" + +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 +msgid "Time must be specified" +msgstr "Należy określić czas" + +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Należy odczekać przynajmniej 1 godzinę przed ponownym odtworzeniem" + +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Audycja bez nazwy" + +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "Nazwa stacji" @@ -2966,12 +4170,10 @@ msgid "Station Description" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "Logo stacji:" #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "Uwaga: każdy plik o rozmiarze większym niż 600x600 zostanie zmniejszony" @@ -2994,94 +4196,83 @@ msgstr "" msgid "Default Fade Out (s):" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 -msgid "Overwrite Podcast Episode Metatags" +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:120 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "Wyłączone" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" -msgstr "Włączone" - #: airtime_mvc/application/forms/GeneralPreferences.php:111 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgid "Intro Autoloading Playlist" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public LibreTime API" +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 -msgid "Required for embeddable schedule widget." +msgid "Overwrite Podcast Episode Metatags" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "Tydzień zaczynaj od" -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' nie jest poprawnym adresem email w podstawowym formacie local-part@hostname" +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" +msgstr "Nagrywać z wejścia liniowego?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' nie pasuje do formatu daty '%format%'" +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" +msgstr "Odtwarzać ponownie?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' zawiera mniej niż %min% znaków" +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" +msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' zawiera więcej niż %max% znaków" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' nie zawiera się w przedziale od '%min%' do '%max%'" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "Hasła muszą się zgadzać" +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" +msgstr "Resetuj hasło" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 msgid "Auto Switch Off:" @@ -3125,16 +4316,6 @@ msgstr "" msgid "Show Source Mount:" msgstr "" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "Zaloguj" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "Wpisz znaki, które widzisz na obrazku poniżej." - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3148,24 +4329,96 @@ msgstr "Potwierdź nowe hasło" msgid "Password confirmation does not match your password." msgstr "Hasła muszą się zgadzać." -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" -msgstr "Nazwa użytkownika" +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" +msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Resetuj hasło" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" +msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "dni" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Włączony:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "Typ strumienia:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "Typ usługi:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "Kanały:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "1 - Mono" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "2 - Stereo" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "Serwer" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "Port" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "adres URL" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "Punkt montowania" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "Login Administratora" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "Hasło Administratora" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "Serwer nie może być pusty." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "Port nie może być pusty." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "Punkt montowania nie może być pusty dla serwera Icecast." + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" msgstr "" #: airtime_mvc/application/forms/Player.php:14 @@ -3192,280 +4445,54 @@ msgstr "" msgid " - The player does not support Opus streams." msgstr "" -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - #: airtime_mvc/application/forms/Player.php:72 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -msgid "Preview:" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" -msgstr "Telefon:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" -msgstr "Strona internetowa stacji:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" -msgstr "Kraj:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" -msgstr "Miasto:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" -msgstr "Opis stacji:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' nie jest poprawnym adresem email w podstawowym formacie local-part@hostname" -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "Wymagana jest akceptacja polityki prywatności." +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' nie pasuje do formatu daty '%format%'" -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' zawiera mniej niż %min% znaków" -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' zawiera więcej niż %max% znaków" -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "Wszystkie moje audycje:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' nie zawiera się w przedziale od '%min%' do '%max%'" -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr "Wybierz kryteria" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "Bit Rate (Kbps)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "Opis" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "Częstotliwość próbkowania (kHz)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "godzin(y)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "minut(y)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "elementy" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "Statyczny" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "Dynamiczny" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "Tworzenie zawartości listy odtwarzania i zapisz kryteria" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "Utwórz" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "Losowa kolejność odtwarzania" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "Przemieszaj" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Limit nie może być pusty oraz mniejszy od 0" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "Limit nie może być większy niż 24 godziny" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "Wartość powinna być liczbą całkowitą" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "Maksymalna liczba elementów do ustawienia to 500" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "Należy wybrać kryteria i modyfikator" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "Długość powinna być wprowadzona w formacie '00:00:00'" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Wartość powinna byc zapisana w formacie timestamp (np. 0000-00-00 lub 0000-00-00 00:00:00)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:597 -msgid "The value has to be numeric" -msgstr "Wartość musi być liczbą" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "Wartość powinna być mniejsza niż 2147483648" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Wartość powinna posiadać mniej niż %s znaków" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "Wartość nie może być pusta" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -msgid "Default License:" -msgstr "Domyślna licencja:" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "Wszelkie prawa zastrzeżone" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -msgid "The work is in the public domain" -msgstr "Utwór w domenie publicznej" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -msgid "Creative Commons Attribution" -msgstr "Uznanie autorstwa wg licencji Creative Commons " - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -msgid "Creative Commons Attribution Noncommercial" -msgstr "Użycie niekomercyjne wg Creative Commons " - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "Uznanie Autorstwa Bez Utworów Zależnych wg Creative Commons" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -msgid "Creative Commons Attribution Share Alike" -msgstr "Uznanie a Na Tych Samych Warunkach wg Creative Commons " - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "Uznanie Autorstwa Bez Utworów Zależnych wg Creative Commons" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "Uznanie a Na Tych Samych Warunkach wg Creative Commons " - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" +msgstr "Hasła muszą się zgadzać" #: airtime_mvc/application/forms/StreamSetting.php:26 msgid "Hardware Audio Output:" @@ -3543,381 +4570,636 @@ msgstr "" msgid "Custom / 3rd Party Streaming" msgstr "" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Włączony:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Typ strumienia:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "Bit Rate:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Typ usługi:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Kanały:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Mono" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Stereo" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Serwer" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Port" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "adres URL" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "Nazwa" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Punkt montowania" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Login Administratora" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Hasło Administratora" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Serwer nie może być pusty." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "Port nie może być pusty." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Punkt montowania nie może być pusty dla serwera Icecast." - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "Katalog importu:" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "Katalogi obserwowane:" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "Nieprawidłowy katalog" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -msgid "Set Cue In" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -msgid "Set Cue Out" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read on to find out more." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -" is easier than ever." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -" just a click away, you'll be on air and hands-free in no time." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/livestream.phtml:9 -#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2 -msgid "Live stream" -msgstr "Transmisja na żywo" - -#: airtime_mvc/application/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/DateHelper.php:213 #, php-format -msgid "%1$s copyright © %2$s All rights reserved.If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:493 +msgid "On Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:494 +msgid "Off Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:495 +msgid "Offline" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:179 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "O email não pôde ser enviado. Verifique as definições do servidor de email e certifique-se de que esteja corretamente configurado." - -#: airtime_mvc/application/controllers/LoginController.php:183 -msgid "That username or email address could not be found." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "Usuário ou senha inválidos. Tente novamente." - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "Você está vendo uma versão obsoleta de %s" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Você não pode adicionar faixas a um bloco dinâmico" - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Você não tem permissão para excluir os %s(s) selecionados." - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "Você pode somente adicionar faixas um bloco inteligente." - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "Lista Sem Título" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "Bloco Sem Título" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "Lista Desconhecida" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "Preferências atualizadas." - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "Configurações de suporte atualizadas." - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "Informações de Suporte" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "Preferências de fluxo atualizadas." - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "o caminho precisa ser informado" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "Problemas com o Liquidsoap..." - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "Retransmissão do programa %s de %s as %s" -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" -msgstr "Selecione o cursor" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" +msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" -msgstr "Remover o cursor" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" +msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" -msgstr "programa inexistente" +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" +msgstr "Visualizar Metadados do Arquivo Gravado" -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "Usuário adicionado com sucesso!" +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "" -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "Usuário atualizado com sucesso!" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "" -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "Configurações atualizadas com sucesso!" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" +msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Fluxo Sem Título" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" +msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Fluxo gravado." +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" +msgstr "Editar Programa" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Valores do formulário inválidos." +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Caracter inválido informado" +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "O dia precisa ser especificado" +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "O horário deve ser especificado" +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" +msgstr "Não é possível arrastar e soltar programas repetidos" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "É preciso aguardar uma hora para retransmitir" +#: airtime_mvc/application/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "Não é possível mover um programa anterior" + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "Não é possível mover um programa anterior" + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "Não é permitido agendar programas sobrepostos" + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Não é possível mover um programa gravado menos de 1 hora antes de suas retransmissões." + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "O programa foi excluído porque a gravação prévia não existe!" + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." +msgstr "É necessário aguardar 1 hora antes de retransmitir." + +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" +msgstr "Executado" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" +#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr "Selecione um critério" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "Bitrate (Kbps)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "Taxa de Amostragem (khz)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "horas" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "minutos" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "itens" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "Dinâmico" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "Estático" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "Gerar conteúdo da lista e salvar critério" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "Embaralhar conteúdo da lista" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "O limite não pode ser vazio ou menor que 0" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "O limite não pode ser maior que 24 horas" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "O valor deve ser um número inteiro" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "O número máximo de itens é 500" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "Você precisa selecionar Critério e Modificador " + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "A duração deve ser informada no formato '00:00:00'" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "O valor deve estar no formato timestamp (ex. 0000-00-00 ou 0000-00-00 00:00:00)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "O valor deve ser numérico" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "O valor precisa ser menor que 2147483648" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 #, php-format -msgid "Use %s Authentication:" +msgid "The value should be less than %s characters" +msgstr "O valor deve conter no máximo %s caracteres" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" +msgstr "O valor não pode estar em branco" + +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "Usar Autenticação Personalizada:" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "Definir Usuário:" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Definir Senha:" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "Número ISRC:" + +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" +msgstr "Diretório de Importação:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "O usuário não pode estar em branco." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" +msgstr "Diretórios Monitorados: " -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "A senha não pode estar em branco." - -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -msgid "days" -msgstr "dias" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" +msgstr "Não é um diretório válido" #: airtime_mvc/application/forms/AddShowRepeats.php:10 msgid "Link:" @@ -2637,8 +3882,9 @@ msgid "day of the week" msgstr "" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "Data de Fim:" @@ -2654,78 +3900,10 @@ msgstr "A data de fim deve ser posterior à data de início" msgid "Please select a repeat day" msgstr "" -#: airtime_mvc/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Gravar a partir do Line In?" - -#: airtime_mvc/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Retransmitir?" - -#: airtime_mvc/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "Cor de Fundo:" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "Cor da Fonte:" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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 "Remover" - -#: airtime_mvc/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -msgid "Name:" -msgstr "Nome:" - -#: airtime_mvc/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Programa Sem Título" - -#: airtime_mvc/application/forms/AddShowWhat.php:36 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "URL:" -msgstr "URL:" - -#: airtime_mvc/application/forms/AddShowWhat.php:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "Gênero:" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "Descrição:" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" +msgstr "Valor é obrigatório e não poder estar em branco." #: airtime_mvc/application/forms/AddShowWhen.php:16 msgid "'%value%' does not fit the time format 'HH:mm'" @@ -2735,6 +3913,7 @@ msgstr "'%value%' não corresponde ao formato 'HH:mm'" msgid "Start Time:" msgstr "" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "" @@ -2743,12 +3922,6 @@ msgstr "" msgid "End Time:" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "Duração:" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "Fuso Horário:" @@ -2766,7 +3939,7 @@ msgid "Cannot modify start date/time of the show that is already started" msgstr "Não é possível alterar o início de um programa que está em execução" #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "Data e horário finais não podem ser definidos no passado." @@ -2782,32 +3955,17 @@ msgstr "Não pode ter duração 00h 00m" msgid "Cannot have duration greater than 24h" msgstr "Não pode ter duração maior que 24 horas" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -msgstr "Não é permitido agendar programas sobrepostos" - -#: airtime_mvc/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Procurar Usuários:" - -#: airtime_mvc/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "DJs:" - #: airtime_mvc/application/forms/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "Usuário:" #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "Senha:" @@ -2828,8 +3986,6 @@ msgstr "Último nome:" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "Email:" @@ -2853,112 +4009,159 @@ msgid "User Type:" msgstr "Perfil do Usuário:" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "Usuário já existe." -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Valor é obrigatório e não poder estar em branco." - -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" msgstr "" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" +msgstr "Usar Autenticação Personalizada:" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "Definir Usuário:" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Definir Senha:" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "O usuário não pode estar em branco." + +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "A senha não pode estar em branco." + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "Data de Início:" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" -msgstr "Título:" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" +msgstr "Caracter inválido informado" -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" -msgstr "Criador:" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" +msgstr "Procurar Usuários:" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" -msgstr "Álbum:" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" +msgstr "DJs:" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" -msgstr "Ano:" - -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" -msgstr "Legenda:" - -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" -msgstr "Compositor:" - -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" -msgstr "Maestro:" - -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" -msgstr "Humor:" - -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" -msgstr "BPM:" - -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" -msgstr "Copyright:" - -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" -msgstr "Número ISRC:" - -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" -msgstr "Website:" - -#: airtime_mvc/application/forms/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" -msgstr "Idioma:" - -#: airtime_mvc/application/forms/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" msgstr "" -#: airtime_mvc/application/forms/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" +msgstr "Meus Programas:" + +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" msgstr "" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" +msgstr "Cor de Fundo:" + +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" +msgstr "Cor da Fonte:" + +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 +msgid "Day must be specified" +msgstr "O dia precisa ser especificado" + +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 +msgid "Time must be specified" +msgstr "O horário deve ser especificado" + +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "É preciso aguardar uma hora para retransmitir" + +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Programa Sem Título" + +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "Nome da Estação" @@ -2967,12 +4170,10 @@ msgid "Station Description" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "Logo da Estação:" #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "Nota: qualquer arquivo maior que 600x600 será redimensionado" @@ -2995,94 +4196,83 @@ msgstr "" msgid "Default Fade Out (s):" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 -msgid "Overwrite Podcast Episode Metatags" +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:120 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "Inativo" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" -msgstr "Ativo" - #: airtime_mvc/application/forms/GeneralPreferences.php:111 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgid "Intro Autoloading Playlist" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public LibreTime API" +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 -msgid "Required for embeddable schedule widget." +msgid "Overwrite Podcast Episode Metatags" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "Semana Inicia Em" -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "%value%' não é um enderçeo de email válido" +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" +msgstr "Gravar a partir do Line In?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' não corresponde a uma data válida '%format%'" +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" +msgstr "Retransmitir?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' is menor que comprimento mínimo %min% de caracteres" +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" +msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' is maior que o número máximo %max% de caracteres" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' não está compreendido entre '%min%' e '%max%', inclusive" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "Senhas não conferem" +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" +msgstr "Redefinir senha" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 msgid "Auto Switch Off:" @@ -3126,16 +4316,6 @@ msgstr "" msgid "Show Source Mount:" msgstr "" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "Acessar" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "Digite os caracteres que você vê na imagem abaixo." - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3149,24 +4329,96 @@ msgstr "Confirmar nova senha" msgid "Password confirmation does not match your password." msgstr "A senha de confirmação não confere." -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" -msgstr "Usuário" +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" +msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Redefinir senha" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" +msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "dias" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Habilitado:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "Tipo de Fluxo:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "Tipo de Serviço:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "Canais:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "1 - Mono" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "2 - Stéreo" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "Servidor" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "Porta" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "URL" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "Ponto de Montagem" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "Usuário Administrador" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "Senha do Administrador" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "Servidor não pode estar em branco." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "Porta não pode estar em branco." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "Ponto de montagem deve ser informada em servidor Icecast." + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" msgstr "" #: airtime_mvc/application/forms/Player.php:14 @@ -3193,280 +4445,54 @@ msgstr "" msgid " - The player does not support Opus streams." msgstr "" -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - #: airtime_mvc/application/forms/Player.php:72 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -msgid "Preview:" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" -msgstr "Fone:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" -msgstr "Website da Estação:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" -msgstr "País:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" -msgstr "Cidade:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" -msgstr "Descrição da Estação:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "%value%' não é um enderçeo de email válido" -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "Você precisa concordar com a política de privacidade." +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' não corresponde a uma data válida '%format%'" -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' is menor que comprimento mínimo %min% de caracteres" -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' is maior que o número máximo %max% de caracteres" -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "Meus Programas:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' não está compreendido entre '%min%' e '%max%', inclusive" -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr "Selecione um critério" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "Bitrate (Kbps)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "Descrição" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "Taxa de Amostragem (khz)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "horas" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "minutos" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "itens" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "Estático" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "Dinâmico" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "Gerar conteúdo da lista e salvar critério" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "Gerar" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "Embaralhar conteúdo da lista" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "Embaralhar" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "O limite não pode ser vazio ou menor que 0" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "O limite não pode ser maior que 24 horas" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "O valor deve ser um número inteiro" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "O número máximo de itens é 500" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "Você precisa selecionar Critério e Modificador " - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "A duração deve ser informada no formato '00:00:00'" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "O valor deve estar no formato timestamp (ex. 0000-00-00 ou 0000-00-00 00:00:00)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:597 -msgid "The value has to be numeric" -msgstr "O valor deve ser numérico" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "O valor precisa ser menor que 2147483648" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "O valor deve conter no máximo %s caracteres" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "O valor não pode estar em branco" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -msgid "Default License:" -msgstr "Licença Padrão:" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "Todos os direitos são reservados" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -msgid "The work is in the public domain" -msgstr "O trabalho é de domínio público" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Attribution" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -msgid "Creative Commons Attribution Noncommercial" -msgstr "Creative Commons Attribution Noncommercial" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "Creative Commons Attribution No Derivative Works" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -msgid "Creative Commons Attribution Share Alike" -msgstr "Creative Commons Attribution Share Alike" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "Creative Commons Attribution Noncommercial Non Derivate Works" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "Creative Commons Attribution Noncommercial Share Alike" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" +msgstr "Senhas não conferem" #: airtime_mvc/application/forms/StreamSetting.php:26 msgid "Hardware Audio Output:" @@ -3544,381 +4570,636 @@ msgstr "" msgid "Custom / 3rd Party Streaming" msgstr "" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Habilitado:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Tipo de Fluxo:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "Bitrate:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Tipo de Serviço:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Canais:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Mono" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Stéreo" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Servidor" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Porta" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "Nome" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Ponto de Montagem" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Usuário Administrador" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Senha do Administrador" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Servidor não pode estar em branco." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "Porta não pode estar em branco." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Ponto de montagem deve ser informada em servidor Icecast." - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "Diretório de Importação:" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "Diretórios Monitorados: " - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "Não é um diretório válido" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -msgid "Set Cue In" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -msgid "Set Cue Out" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read on to find out more." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -" is easier than ever." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -" just a click away, you'll be on air and hands-free in no time." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/livestream.phtml:9 -#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2 -msgid "Live stream" -msgstr "Fluxo ao vivo" - -#: airtime_mvc/application/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/DateHelper.php:213 #, php-format -msgid "%1$s copyright © %2$s All rights reserved.If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:493 +msgid "On Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:494 +msgid "Off Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:495 +msgid "Offline" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:179 -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:183 -msgid "That username or email address could not be found." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" +#: airtime_mvc/application/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" msgstr "" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" +#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 #, php-format -msgid "Use %s Authentication:" +msgid "The value should be less than %s characters" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -msgid "days" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" msgstr "" #: airtime_mvc/application/forms/AddShowRepeats.php:10 @@ -2632,8 +3878,9 @@ msgid "day of the week" msgstr "" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "" @@ -2649,77 +3896,9 @@ msgstr "" msgid "Please select a repeat day" 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/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -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:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" msgstr "" #: airtime_mvc/application/forms/AddShowWhen.php:16 @@ -2730,6 +3909,7 @@ msgstr "" msgid "Start Time:" msgstr "" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "" @@ -2738,12 +3918,6 @@ msgstr "" msgid "End Time:" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "" @@ -2761,7 +3935,7 @@ msgid "Cannot modify start date/time of the show that is already started" msgstr "" #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "" @@ -2777,32 +3951,17 @@ msgstr "" msgid "Cannot have duration greater than 24h" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -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/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "" #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "" @@ -2823,8 +3982,6 @@ msgstr "" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "" @@ -2848,112 +4005,159 @@ msgid "User Type:" msgstr "" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "" -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" msgstr "" -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" msgstr "" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 +msgid "Day must be specified" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 +msgid "Time must be specified" msgstr "" -#: airtime_mvc/application/forms/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" +#: 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/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" msgstr "" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "" @@ -2962,12 +4166,10 @@ msgid "Station Description" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "" @@ -2990,93 +4192,82 @@ msgstr "" msgid "Default Fade Out (s):" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:120 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:111 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgid "Intro Autoloading Playlist" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public LibreTime API" +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 -msgid "Required for embeddable schedule widget." +msgid "Overwrite Podcast Episode Metatags" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" 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" +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" msgstr "" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 @@ -3121,16 +4312,6 @@ msgstr "" msgid "Show Source Mount:" msgstr "" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "" - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3144,24 +4325,96 @@ msgstr "" msgid "Password confirmation does not match your password." msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "" + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" msgstr "" #: airtime_mvc/application/forms/Player.php:14 @@ -3188,279 +4441,53 @@ msgstr "" msgid " - The player does not support Opus streams." msgstr "" -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - #: airtime_mvc/application/forms/Player.php:72 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -msgid "Preview:" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" +#: 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/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "" - -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "" - -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -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:597 -msgid "The value has to be numeric" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -msgid "Default License:" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -msgid "The work is in the public domain" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -msgid "Creative Commons Attribution" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -msgid "Creative Commons Attribution Noncommercial" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -msgid "Creative Commons Attribution Share Alike" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" msgstr "" #: airtime_mvc/application/forms/StreamSetting.php:26 @@ -3539,379 +4566,636 @@ msgstr "" msgid "Custom / 3rd Party Streaming" msgstr "" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -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/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -msgid "Set Cue In" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -msgid "Set Cue Out" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read on to find out more." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -" is easier than ever." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -" just a click away, you'll be on air and hands-free in no time." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "" - -#: 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/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/DateHelper.php:213 #, php-format -msgid "%1$s copyright © %2$s All rights reserved.If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "Если галочка не установлена, то Смарт-блок будет планировать столько треков, сколько может быть полностью воспроизведено, в течение указанного периода времени. Обычно это приводит к воспроизведению аудио, которое немного меньше указанной длительности.
Если галочка установлена, то Смарт-блок также запланирует одну последнюю дорожку, которая будет превышать указанный период времени. Этот последний трек может быть обрезан, если закончится Программа, в которое добавлен Смарт-блок.
" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "Предпросмотр плейлиста" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "Предпросмотр веб-потока" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "У вас нет разрешений для просмотра Библиотеки" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "С текущего момента" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "Нажмите «Новый» чтобы создать новый" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "Нажмите «Загрузить» чтобы добавить новый" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "Дата импорта" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "Добавить новый подкаст" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" +"Нельзя планировать аудио вне рамок Программы.\n" +"Попробуйте сначала создать Программу" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "Еще ни одного файла не загружено" + +#: airtime_mvc/application/controllers/LocaleController.php:493 msgid "On Air" msgstr "В прямом эфире" -#: airtime_mvc/application/controllers/LocaleController.php:435 +#: airtime_mvc/application/controllers/LocaleController.php:494 msgid "Off Air" msgstr "Не в эфире" -#: airtime_mvc/application/controllers/LocaleController.php:436 +#: airtime_mvc/application/controllers/LocaleController.php:495 msgid "Offline" msgstr "Офлайн" -#: airtime_mvc/application/controllers/LocaleController.php:437 +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "Ничего не запланировано" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." -msgstr "Пожалуйста введите ваш логин и пароль." +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." +msgstr "Нажмите «Добавить» чтобы создать новый" -#: airtime_mvc/application/controllers/LoginController.php:179 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "E-mail не может быть отправлен. Проверьте настройки почтового сервера и убедитесь, что он был настроен должным образом." - -#: airtime_mvc/application/controllers/LoginController.php:183 -msgid "That username or email address could not be found." -msgstr "Такой пользователь или e-mail не найдены." - -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "Неправильно ввели логин или e-mail." - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "Неверный логин или пароль. Пожалуйста, попробуйте еще раз." - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "Вы просматриваете старые версии %s" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Вы не можете добавить треки в динамические блоки." - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "У вас нет разрешения на удаление выбранных %s(s)." - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "Вы можете добавить треки только в Смарт-блок." - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "Плейлист без названия" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "Смарт-блок без названия" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "Неизвестный Плейлист" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "Настройки сохранены." - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "Настройка поддержки обновлена." - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "Отзывы о поддержке" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "Настройки потока обновлены." - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "необходимо указать путь" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "Проблема с Liquidsoap ..." - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "Метод запроса не принят" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "Ретрансляция Программы %s от %s в %s" -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" -msgstr "Выбрать курсор" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" +msgstr "Автоматически сгенерированный Смарт-блок для подкаста" -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" -msgstr "Удалить курсор" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" +msgstr "Записанный файл не существует" -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" -msgstr "Программы не существует" +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" +msgstr "Просмотр мета-данных записанного файла" -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "Пользователь успешно добавлен!" +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "Запланировать Треки" -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "Пользователь успешно обновлен!" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "Очистить Программу" -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "Настройки успешно обновлены!" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" +msgstr "Отменить Программу" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Веб-поток без названия" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" +msgstr "Редактировать этот Экземпляр" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Веб-поток сохранен." +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" +msgstr "Редактировать Программу" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Недопустимые значения." +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" +msgstr "Удалить этот Экземпляр" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Неверно введенный символ" +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" +msgstr "Удалить этот Экземпляр и все связанные" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Укажите день" +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" +msgstr "Доступ запрещен" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "Укажите время" +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" +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/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "Невозможно переместить завершившуюся Программу" + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "Невозможно переместить Программу в прошлое" + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "Нельзя запланировать пересекающиеся Программы." + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Невозможно переместить записанную Программу менее, чем за один час до ее ретрансляции." + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Программа была удалена, потому что записанной Программы не существует!" + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Подождите один час до ретрансляции." + +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "Трек" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "Время начала" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "Время окончания" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" +msgstr "Проиграно" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "Добавить?" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "Содержимое автозагружаемого Плейлиста добавляется в Программу за один час до ее выхода в эфир. Больше информации" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "Выбрать Плейлист" @@ -2574,47 +3618,240 @@ msgstr "Выбрать Плейлист" msgid "Repeat Playlist Until Show is Full ?" msgstr "Повторять Плейлист, пока Программа не заполнится?" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr "Выбрать критерии" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "Битрейт (Kbps)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "Частота дискретизации (кГц)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "часов" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "минут" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "элементы" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "оставшееся время программы" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "Случайно" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "Новые" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "Старые" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "Давно проигранные" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "Недавно проигранные" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "Тип:" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "Динамический" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "Статический" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "Разрешить повторение треков:" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "Разрешить последнему треку превышать лимит времени:" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "Сортировка треков:" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "Ограничить в:" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "Сгенерировать содержимое Плейлиста и сохранить критерии" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "Перемешать содержимое Плейлиста" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Интервал не может быть пустым или менее 0" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "Интервал не может быть более 24 часов" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "Значение должно быть целым числом" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "500 является максимально допустимым значением" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "Вы должны выбрать Критерии и Модификаторы" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "«Длительность» должна быть в формате '00:00:00'" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Значение должно быть в формате временной метки (например, 0000-00-00 или 00:00:00)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "Значение должно быть числом" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "Значение должно быть меньше, чем 2147483648" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 #, php-format -msgid "Use %s Authentication:" -msgstr "Использовать %s Аутентификацию:" +msgid "The value should be less than %s characters" +msgstr "Значение должно быть менее %s символов" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "Использование пользовательской идентификации:" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" +msgstr "Значение не может быть пустым" -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "Пользовательский логин" +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Пользовательский пароль" +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" -msgstr "Хост:" +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "ISRC номер:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" -msgstr "Порт:" +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." +msgstr "Опубликовать..." -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "Точка монтирования:" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" +msgstr "Импорт папки:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "Поле «Логин» не может быть пустым." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" +msgstr "Просматриваемые папки:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "Поле «Пароль» не может быть пустым." - -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -msgid "days" -msgstr "дней" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" +msgstr "Не является допустимой папкой" #: airtime_mvc/application/forms/AddShowRepeats.php:10 msgid "Link:" @@ -2661,8 +3898,9 @@ msgid "day of the week" msgstr "день недели" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "Дата окончания:" @@ -2678,78 +3916,10 @@ msgstr "Дата окончания должна быть после даты н msgid "Please select a repeat day" 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/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "Цвет фона:" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "Цвет текста:" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "Текущий логотип:" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "Логотип Программы:" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -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 "URL:" - -#: airtime_mvc/application/forms/AddShowWhat.php:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "Жанр:" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "Описание:" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "Описание экземпляра:" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" +msgstr "Поля не могут быть пустыми" #: airtime_mvc/application/forms/AddShowWhen.php:16 msgid "'%value%' does not fit the time format 'HH:mm'" @@ -2759,6 +3929,7 @@ msgstr "'%value%' не соответствует формату времени msgid "Start Time:" msgstr "Время начала:" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "В будущем:" @@ -2767,12 +3938,6 @@ msgstr "В будущем:" msgid "End Time:" msgstr "Время завершения:" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "Длительность:" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "Часовой пояс:" @@ -2790,7 +3955,7 @@ msgid "Cannot modify start date/time of the show that is already started" msgstr "Нельзя изменить дату/время начала Программы, которая уже началась" #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "Дата/время окончания не могут быть в прошлом" @@ -2806,32 +3971,17 @@ msgstr "Не может длиться 00 ч 00 мин" msgid "Cannot have duration greater than 24h" msgstr "Программа не может длиться больше 24 часов" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -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/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "Логин:" #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "Пароль:" @@ -2852,8 +4002,6 @@ msgstr "Фамилия:" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "E-mail:" @@ -2877,112 +4025,159 @@ msgid "User Type:" msgstr "Категория:" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "Логин не является уникальным." -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Поля не могут быть пустыми" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" +msgstr "Использовать %s Аутентификацию:" -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" -msgstr "Удалить все треки в Библиотеке" +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" +msgstr "Использование пользовательской идентификации:" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "Пользовательский логин" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Пользовательский пароль" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" +msgstr "Хост:" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "Порт:" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "Точка монтирования:" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "Поле «Логин» не может быть пустым." + +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "Поле «Пароль» не может быть пустым." + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "Язык радиостанции" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "Часовой пояс станции:" + +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "Приватность ленты" + +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "Публичный" + +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "Частный" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "Дата начала:" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" -msgstr "Название:" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" +msgstr "Неверно введенный символ" -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" -msgstr "Автор:" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" +msgstr "Поиск пользователей:" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" -msgstr "Альбом:" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" +msgstr "Диджеи:" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" -msgstr "Год:" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" +msgstr "Фильтровать по Программам" -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" -msgstr "Метка:" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" +msgstr "Все мои Программы:" -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" -msgstr "Композитор:" +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" +msgstr "Мои Программы" -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" -msgstr "Исполнитель:" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" +msgstr "Цвет фона:" -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" -msgstr "Настроение:" +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" +msgstr "Цвет текста:" -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" -msgstr "BPM:" +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" +msgstr "Текущий логотип:" -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" -msgstr "Авторское право:" +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" +msgstr "Логотип Программы:" -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" -msgstr "ISRC номер:" +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" +msgstr "Предпросмотр логотипа:" -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" -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/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" -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/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" -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/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" -msgstr "Время окончания" +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Программа без названия" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Часовой пояс:" +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "Описание экземпляра:" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "Название Станции:" @@ -2991,12 +4186,10 @@ msgid "Station Description" msgstr "Описание Станции:" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "Логотип Станции:" #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "Примечание: файлы, превышающие размер 600x600 пикселей, будут уменьшены." @@ -3019,94 +4212,83 @@ msgstr "Сведение по умолчанию (сек):" msgid "Default Fade Out (s):" msgstr "Затухание по умолчанию (сек):" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:111 +msgid "Intro Autoloading Playlist" +msgstr "Вступительный автозагружаемый плейлист (Intro)" + +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" +msgstr "Завершающий автозагружаемый плейлист (Outro)" + +#: airtime_mvc/application/forms/GeneralPreferences.php:123 msgid "Overwrite Podcast Episode Metatags" msgstr "Перезапись мета-тегов эпизодов Подкастов:" -#: airtime_mvc/application/forms/GeneralPreferences.php:120 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "Генерация Смарт-блока и Плейлиста после создания нового Подкаста:" - -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "Если эта опция включена, новый Смарт-блок и Плейлист, соответствующие новой дорожке Подкаста, будут созданы сразу же после создания нового Подкаста. Обратите внимание, что функция «Перезапись мета-тегов эпизодов Подкастов» также должна быть включена, чтобы Смарт-блоки могли гарантированно находить эпизоды." - -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "Отключено" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" -msgstr "Включено" - -#: airtime_mvc/application/forms/GeneralPreferences.php:111 +#: airtime_mvc/application/forms/GeneralPreferences.php:129 msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." msgstr "Включение этой функции приведет к тому, что для дорожек эпизодов Подкастов будут установлены мета-теги «Исполнитель», «Название» и «Альбом» из тегов в ленте Подкаста. Обратите внимание, что включение этой функции рекомендуется для обеспечения надежного планирования эпизодов с помощью Смарт-блоков." -#: airtime_mvc/application/forms/GeneralPreferences.php:122 +#: airtime_mvc/application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "Генерация Смарт-блока и Плейлиста после создания нового Подкаста:" + +#: airtime_mvc/application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "Если эта опция включена, новый Смарт-блок и Плейлист, соответствующие новой дорожке Подкаста, будут созданы сразу же после создания нового Подкаста. Обратите внимание, что функция «Перезапись мета-тегов эпизодов Подкастов» также должна быть включена, чтобы Смарт-блоки могли гарантированно находить эпизоды." + +#: airtime_mvc/application/forms/GeneralPreferences.php:155 msgid "Public LibreTime API" msgstr "Разрешить публичный API для LibreTime?" -#: airtime_mvc/application/forms/GeneralPreferences.php:123 +#: airtime_mvc/application/forms/GeneralPreferences.php:156 msgid "Required for embeddable schedule widget." msgstr "Требуется для встраиваемого виджета-расписания." -#: airtime_mvc/application/forms/GeneralPreferences.php:129 +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "Активация данной функции позволит LibreTime предоставлять данные на внешние виджеты, которые могут быть встроены на сайт." -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "Разрешенные адреса CORS:" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "Внешние URL адреса, которым разрешен доступ к данному экземпляру LibreTime в браузере. Укажите каждый адрес отдельной строкой." -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "Язык по умолчанию:" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "Часовой пояс станции:" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "Неделя начинается с:" -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "Отображать кнопку «Вход» на Странице Радио?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' не является действительным адресом электронной почты в формате local-part@hostname" +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" +msgstr "Запись с линейного входа?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' не соответствует формату даты '%format%'" +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" +msgstr "Ретрансляция?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' имеет менее %min% символов" +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" +msgstr "Электронная почта" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' имеет более %max% символов" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' не входит в промежуток '%min%' и '%max%', включительно" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "Пароли не совпадают" +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" +msgstr "Сбросить пароль" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 msgid "Auto Switch Off:" @@ -3150,16 +4332,6 @@ msgstr "Порт для источника Show:" msgid "Show Source Mount:" msgstr "Точка монтирования для источника Show:" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "Вход" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "Введите символы, которые вы видите на картинке ниже." - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3173,25 +4345,97 @@ msgstr "Подтвердить новый пароль" msgid "Password confirmation does not match your password." msgstr "Подтверждение пароля не совпадает с вашим паролем." -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" -msgstr "Электронная почта" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" +msgstr "Удалить все треки в Библиотеке" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" -msgstr "Логин" +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" +msgstr "Название типа" -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Сбросить пароль" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" +msgstr "Код:" -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" -msgstr "Назад" +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "Видимость:" + +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "дней" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Активировать:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "Мобильный:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "Тип потока:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "Тип сервиса:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "Аудио каналы:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "Моно" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "Стерео" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "Сервер" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "Порт" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "URL" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "Точка монтирования" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "Администратор" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "Пароль администратора" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "Сервер не может быть пустым." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "Порт не может быть пустым." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "Точка монтирования не может быть пустой в Icecast сервер." + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "Часовой пояс:" #: airtime_mvc/application/forms/Player.php:14 msgid "Now Playing" @@ -3217,281 +4461,54 @@ msgstr " - Совместимость с мобильными" msgid " - The player does not support Opus streams." msgstr " - Проигрыватель не поддерживает вещание Opus ." -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "Встраиваемый код:" - #: airtime_mvc/application/forms/Player.php:72 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "Скопируйте и добавьте этот код в HTML сайта, чтобы добавить плеер." -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -#: airtime_mvc/application/views/scripts/embeddablewidgets/facebook.phtml:16 -msgid "Preview:" -msgstr "Предпросмотр:" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" +msgstr "Добавить мета-данные вашей станции в TuneIn?" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" -msgstr "Приватность ленты" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" +msgstr "ID станции:" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" -msgstr "Публичный" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" +msgstr "Ключ партнера:" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" -msgstr "Частный" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" +msgstr "Идентификатор партнера:" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" -msgstr "Телефон:" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." +msgstr "Неверные параметры TuneIn. Убедитесь в правильности настроек TuneIn и повторите попытку." -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" -msgstr "Сайт станции:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' не является действительным адресом электронной почты в формате local-part@hostname" -#: airtime_mvc/application/forms/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" -msgstr "Страна:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' не соответствует формату даты '%format%'" -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" -msgstr "Город:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' имеет менее %min% символов" -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" -msgstr "Описание станции:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' имеет более %max% символов" -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" -msgstr "Продвигать мою станцию на %s" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' не входит в промежуток '%min%' и '%max%', включительно" -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "Устанавливая данную отметку я соглашаюсь с %s %sполитикой конфиденциальности%s." - -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "Вы должны согласиться с политикой конфиденциальности." - -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "Язык радиостанции" - -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "Фильтровать по Программам" - -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "Все мои Программы:" - -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "Мои Программы" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr "Выбрать критерии" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "Битрейт (Kbps)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "Описание" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "Частота дискретизации (кГц)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "часов" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "минут" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "элементы" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "Случайно" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "Новые" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "Старые" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "Тип:" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "Статический" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "Динамический" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "Разрешить повторение треков:" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "Разрешить последнему треку превышать лимит времени:" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "Это только предварительный просмотр возможного контента, сгенерированного Смарт-блоком на основе вышеуказанных критериев." - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "Дополнительные опции" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "Сортировка треков:" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "Ограничить в:" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "Сгенерировать содержимое Плейлиста и сохранить критерии" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "Сгенерировать" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "Перемешать содержимое Плейлиста" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "Перемешать" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Интервал не может быть пустым или менее 0" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "Интервал не может быть более 24 часов" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "Значение должно быть целым числом" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "500 является максимально допустимым значением" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "Вы должны выбрать Критерии и Модификаторы" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "«Длительность» должна быть в формате '00:00:00'" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Значение должно быть в формате временной метки (например, 0000-00-00 или 00:00:00)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:597 -msgid "The value has to be numeric" -msgstr "Значение должно быть числом" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "Значение должно быть меньше, чем 2147483648" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Значение должно быть менее %s символов" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "Значение не может быть пустым" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -msgid "Default License:" -msgstr "Лицензия по умолчанию:" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "Все права защищены" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -msgid "The work is in the public domain" -msgstr "Работа находится в свободном доступе" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Attribution" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -msgid "Creative Commons Attribution Noncommercial" -msgstr "Creative Commons Attribution Noncommercial" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "Creative Commons Attribution No Derivative Works" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -msgid "Creative Commons Attribution Share Alike" -msgstr "Creative Commons Attribution Share Alike" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "Creative Commons Attribution Noncommercial Non Derivate Works" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "Creative Commons Attribution Noncommercial Share Alike" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" -msgstr "Способ распространения по-умолчанию:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" +msgstr "Пароли не совпадают" #: airtime_mvc/application/forms/StreamSetting.php:26 msgid "Hardware Audio Output:" @@ -3569,391 +4586,636 @@ msgstr "Встроенное вещание" msgid "Custom / 3rd Party Streaming" msgstr "Вещание на внешние сервера" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Активировать:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "Мобильный:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Тип потока:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "Битрейт:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Тип сервиса:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Аудио каналы:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "Моно" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "Стерео" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Сервер" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Порт" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "Название" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Точка монтирования" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Администратор" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Пароль администратора" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Сервер не может быть пустым." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "Порт не может быть пустым." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Точка монтирования не может быть пустой в Icecast сервер." - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "Добавить мета-данные вашей станции в TuneIn?" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "ID станции:" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "Ключ партнера:" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "Идентификатор партнера:" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "Неверные параметры TuneIn. Убедитесь в правильности настроек TuneIn и повторите попытку." - -#: 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/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "Смарт-блок" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "Веб-поток" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "Загрузить" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "Панель управления" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "Подкасты" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "Воспроизвести" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "Стоп" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -msgid "Set Cue In" -msgstr "Установить начало звучания" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -msgid "Set Cue Out" -msgstr "Установить окончание звучания" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "Курсор" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "LibreTime приобрел новый вид!" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read on to find out more." -msgstr "Ваши любимые возможности теперь еще проще использовать, и мы даже добавили несколько новых! Просмотрите видео или читайте дальше, чтобы узнать больше." - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -" is easier than ever." -msgstr "Интерфейс нашей новой Панели управления теперь имеет мощный функционал с разделами, чтобы обновление ваших треков и Плейлистов было еще проще." - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -" just a click away, you'll be on air and hands-free in no time." -msgstr "Мы упростили интерфейс, чтобы сделать навигацию проще. С самыми важными инструментами вы в один клик будете в эфире без каких-либо дополнительных действий." - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -msgstr "У вас огромная музыкальная Библиотека? Замечательно! С новой страницей загрузки вы сможете переносить целые папки в персональное хранилище." - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "Новая версия LibreTime плавнее и быстрее на еще большем количестве устройств! Мы стремимся улучшить впечатления от использования LibreTime не зависимо от того, как подключаетесь вы и ваши слушатели." - -#: 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/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/DateHelper.php:213 #, php-format -msgid "%1$s copyright © %2$s All rights reserved.sudo service libretime-celery restart
"
-msgstr " Если нет - попробуйте запустить sudo service libretime-celery restart
"
-
-#: airtime_mvc\application\views\scripts\systemstatus\index.phtml:164
-msgid " and ensure that it's running with "
-msgstr " а также убедитесь, что она запущена "
-
-#: airtime_mvc\application\views\scripts\systemstatus\index.phtml:164
-msgid "If not, try "
-msgstr "Если нет - попробуйте запустить"
-
-#: airtime_mvc/application/controllers/LocaleController.php:464
-msgid "Show _MENU_"
-msgstr "Показать _MENU_"
-
-#: airtime_mvc/application/controllers/LocaleController.php:462
-msgid "Show _MENU_ entries"
-msgstr "Показать _MENU_ записей"
-
-#: airtime_mvc/application/controllers/LocaleController.php:434
-msgid "No data available in table"
-msgstr "В таблице нет данных"
-
-#: airtime_mvc/application/controllers/LocaleController.php:446
-msgid "Search:"
-msgstr "Поиск:"
-
-#: airtime_mvc/application/controllers/LocaleController.php:471
-msgid "(filtered from _MAX_ total track types)"
+#: airtime_mvc/application/configs/navigation.php:177
+msgid "Contribute to LibreTime"
msgstr ""
-#: airtime_mvc/application/controllers/LocaleController.php:435
-msgid "(filtered from _MAX_ total entries)"
-msgstr "(отфильтровано из _MAX_ записей)"
+#: airtime_mvc/application/configs/navigation.php:182
+msgid "What's New?"
+msgstr "Что нового?"
-#: airtime_mvc/application/controllers/LocaleController.php:465
-msgid "Showing _START_ to _END_ of _TOTAL_ entries"
-msgstr "Записи с _START_ до _END_ из _TOTAL_ записей"
+#: airtime_mvc/public/setup/rabbitmq-setup.php:72
+msgid "Couldn't connect to RabbitMQ server! Please check if the server is running and your credentials are correct."
+msgstr "Не могу подключиться к RabbitMQ серверу! Пожалуйста проверьте, включен ли сервер и все ли верно настроено."
-#: airtime_mvc/application/controllers/LocaleController.php:466
-msgid "Showing _START_ to _END_ of _TOTAL_ tracks"
-msgstr "Показано с _START_ по _END_ из _TOTAL_ треков"
+#~ msgid "Facebook"
+#~ msgstr "Facebook"
-#: airtime_mvc/application/controllers/LocaleController.php:467
-msgid "Showing _START_ to _END_ of _TOTAL_ track types"
-msgstr "Показано с _START_ по _END_ из _TOTAL_ типов трека"
+#~ msgid "Service Status"
+#~ msgstr "Статус службы"
-#: airtime_mvc/application/controllers/LocaleController.php:469
-msgid "Showing _START_ to _END_ of _TOTAL_ users"
-msgstr "Показано с _START_ по _END_ из _TOTAL_ пользователей"
+#~ msgid "FAQ"
+#~ msgstr "Частые вопросы"
-#: airtime_mvc/application/controllers/LocaleController.php:468
-msgid "Showing 0 to 0 of 0 entries"
-msgstr "Записи с 0 до 0 из 0 записей"
+#~ msgid "View track"
+#~ msgstr "Просмотреть трек"
-#: airtime_mvc/application/controllers/LocaleController.php:469
-msgid "Showing 0 to 0 of 0 tracks"
-msgstr "Показано с 0 по 0 из 0 треков"
+#~ msgid "Update track"
+#~ msgstr "Обновить трек"
-#: airtime_mvc/application/controllers/LocaleController.php:446
-msgid "First"
-msgstr "Первая"
+#~ msgid "Welcome to the new Airtime Pro!"
+#~ msgstr "Добро пожаловать в новый LibreTime!"
-#: airtime_mvc/application/controllers/LocaleController.php:447
-msgid "Last"
-msgstr "Последняя"
+#~ msgid "Support setting updated."
+#~ msgstr "Настройка поддержки обновлена."
-#: airtime_mvc/application/controllers/LocaleController.php:449
-msgid "Previous"
-msgstr "Предыдущая"
+#~ msgid "Support Feedback"
+#~ msgstr "Отзывы о поддержке"
-#: airtime_mvc/application/controllers/LocaleController.php:482
-msgid "Podcast settings saved"
-msgstr "Настройки подкаста сохранены"
+#~ msgid "Type the characters you see in the picture below."
+#~ msgstr "Введите символы, которые вы видите на картинке ниже."
-#: airtime_mvc/
-msgid "Type"
-msgstr "Тип"
+#~ msgid "Phone:"
+#~ msgstr "Телефон:"
-#: airtime_mvc/
-msgid "Manage Track Types"
-msgstr "Управление типами треков"
+#~ msgid "Station Web Site:"
+#~ msgstr "Сайт станции:"
-#: airtime_mvc/
-msgid "New Track Type"
-msgstr "Новый тип"
+#~ msgid "Country:"
+#~ msgstr "Страна:"
-#: airtime_mvc/
-msgid "Type Name:"
-msgstr "Название типа"
+#~ msgid "City:"
+#~ msgstr "Город:"
-#: airtime_mvc/
-msgid "Code"
-msgstr "Код"
+#~ msgid "Station Description:"
+#~ msgstr "Описание станции:"
-#: airtime_mvc/
-msgid "Code:"
-msgstr "Код:"
+#~ msgid "Promote my station on %s"
+#~ msgstr "Продвигать мою станцию на %s"
-#: airtime_mvc/
-msgid "Visibility"
-msgstr "Видимость"
+#~ msgid "By checking this box, I agree to %s's %sprivacy policy%s."
+#~ msgstr "Устанавливая данную отметку я соглашаюсь с %s %sполитикой конфиденциальности%s."
-#: airtime_mvc/
-msgid "Visibility:"
-msgstr "Видимость:"
+#~ msgid "You have to agree to privacy policy."
+#~ msgstr "Вы должны согласиться с политикой конфиденциальности."
-#: airtime_mvc/application/controllers/LocaleController.php:473
-msgid "Are you sure you want to delete this tracktype?"
-msgstr "Вы уверены что хотите удалить этот тип трека?"
+#~ msgid "Default License:"
+#~ msgstr "Лицензия по умолчанию:"
-#: airtime_mvc/application/controllers/LocaleController.php:483
-msgid "Are you sure you want to delete this user?"
-msgstr "Вы уверены что хотите удалить этого пользователя?"
+#~ msgid "All rights are reserved"
+#~ msgstr "Все права защищены"
-#: airtime_mvc/application/controllers/LocaleController.php:474
-msgid "No track types were found."
-msgstr "Типы треков не были найдены."
+#~ msgid "The work is in the public domain"
+#~ msgstr "Работа находится в свободном доступе"
-#: airtime_mvc/application/controllers/LocaleController.php:475
-msgid "No track types found"
-msgstr "Типы треков не найдены"
+#~ msgid "Creative Commons Attribution"
+#~ msgstr "Creative Commons Attribution"
-#: airtime_mvc/application/controllers/LocaleController.php:476
-msgid "No matching track types found"
-msgstr "Не найдено подходящих типов треков"
+#~ msgid "Creative Commons Attribution Noncommercial"
+#~ msgstr "Creative Commons Attribution Noncommercial"
-#: airtime_mvc/application/controllers/LocaleController.php:
-msgid "Warning: These functions will have permanent and lasting effects on your Airtime station. Think carefully before using them!"
-msgstr "ВНИМАНИЕ: Применение этих функций необратимо повлияет на вашу радиостанцию Libretime. Будьте внимательны, прежде чем использовать их!"
+#~ msgid "Creative Commons Attribution No Derivative Works"
+#~ msgstr "Creative Commons Attribution No Derivative Works"
-#: airtime_mvc/application/controllers/LocaleController.php:
-msgid "Can't delete yourself!"
-msgstr "Вы не можете удалить себя!"
+#~ msgid "Creative Commons Attribution Share Alike"
+#~ msgstr "Creative Commons Attribution Share Alike"
-#: airtime_mvc/application/controllers/LocaleController.php:
-msgid "You haven't published any episodes!"
-msgstr "У вас нет опубликованных эпизодов!"
+#~ msgid "Creative Commons Attribution Noncommercial Non Derivate Works"
+#~ msgstr "Creative Commons Attribution Noncommercial Non Derivate Works"
-#: airtime_mvc/application/controllers/LocaleController.php:
-msgid "You can publish your uploaded content from the 'Tracks' view."
-msgstr "Вы можете опубликовать ваш загруженный контент из панели «Треки»."
+#~ msgid "Creative Commons Attribution Noncommercial Share Alike"
+#~ msgstr "Creative Commons Attribution Noncommercial Share Alike"
-#: airtime_mvc/application/controllers/LocaleController.php:
-msgid "Try it now"
-msgstr "Попробовать сейчас"
+#~ msgid "Default Sharing Type:"
+#~ msgstr "Способ распространения по-умолчанию:"
-#: airtime_mvc\application\forms\SmartBlockCriteria.php:167
-msgid "time remaining in show"
-msgstr "оставшееся время программы"
+#~ msgid "Airtime Pro has a new look!"
+#~ msgstr "LibreTime приобрел новый вид!"
-#: airtime_mvc\application\forms\SmartBlockCriteria.php:179
-msgid "Most recently played"
-msgstr "Давно проигранные"
+#~ msgid ""
+#~ "Your favorite features are now even easier to use - and we've even\n"
+#~ " added a few new ones! Check out the video above or read on to find out more."
+#~ msgstr "Ваши любимые возможности теперь еще проще использовать, и мы даже добавили несколько новых! Просмотрите видео или читайте дальше, чтобы узнать больше."
-#: airtime_mvc\application\forms\SmartBlockCriteria.php:180
-msgid "Least recently played"
-msgstr "Недавно проигранные"
+#~ msgid ""
+#~ "Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n"
+#~ " is easier than ever."
+#~ msgstr "Интерфейс нашей новой Панели управления теперь имеет мощный функционал с разделами, чтобы обновление ваших треков и Плейлистов было еще проще."
-#: airtime_mvc/application/controllers/LocaleController.php:
-msgid "If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" -msgstr "Если галочка не установлена, то Смарт-блок будет планировать столько треков, сколько может быть полностью воспроизведено, в течение указанного периода времени. Обычно это приводит к воспроизведению аудио, которое немного меньше указанной длительности.
Если галочка установлена, то Смарт-блок также запланирует одну последнюю дорожку, которая будет превышать указанный период времени. Этот последний трек может быть обрезан, если закончится Программа, в которое добавлен Смарт-блок.
" +#~ msgid "" +#~ "We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" +#~ " just a click away, you'll be on air and hands-free in no time." +#~ msgstr "Мы упростили интерфейс, чтобы сделать навигацию проще. С самыми важными инструментами вы в один клик будете в эфире без каких-либо дополнительных действий." -#: airtime_mvc\application\views\scripts\playlist\update.phtml:10 -msgid " track matches your search criteria." -msgid_plural " tracks match your search criteria." -msgstr[0] " трек соответствует вашим критериям поиска." -msgstr[1] " трека соответствуют вашим критериям поиска." -msgstr[2] " треков соответствуют вашим критериям поиска." +#~ msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." +#~ msgstr "У вас огромная музыкальная Библиотека? Замечательно! С новой страницей загрузки вы сможете переносить целые папки в персональное хранилище." -#: airtime_mvc\application\controllers\LibraryController.php:159 -#, php-format -msgid "Duplicate Smartblock" -msgstr "Дублировать Смарт-блок" +#~ msgid "" +#~ "The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" +#~ " experience, no matter how you're connected." +#~ msgstr "Новая версия LibreTime плавнее и быстрее на еще большем количестве устройств! Мы стремимся улучшить впечатления от использования LibreTime не зависимо от того, как подключаетесь вы и ваши слушатели." -#: airtime_mvc\application\services\PodcastService.php:161 -#, php-format -msgid "Auto-generated smartblock for podcast" -msgstr "Автоматически сгенерированный Смарт-блок для подкаста" +#~ msgid "Help improve %s by letting us know how you're using it. This information will be collected regularly in order to enhance your user experience.sudo service libretime-celery restart
"
+#~ msgstr " Если нет - попробуйте запустить sudo service libretime-celery restart
"
-#: airtime_mvc
-msgid "Please enter both your username and email address."
-msgstr "Пожалуйста, введите ваши логин и e-mail."
-
-#: airtime_mvc
-msgid "Powered by LibreTime"
-msgstr "При поддержке LibreTime"
-
-#: airtime_mvc
-msgid "Now Playing:"
-msgstr "Сейчас играет:"
+#~ msgid "Powered by LibreTime"
+#~ msgstr "При поддержке LibreTime"
#~ msgid "of"
#~ msgstr "из"
diff --git a/airtime_mvc/locale/si/LC_MESSAGES/airtime.po b/airtime_mvc/locale/si/LC_MESSAGES/airtime.po
index c817b2c9e..9ad608991 100644
--- a/airtime_mvc/locale/si/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/si/LC_MESSAGES/airtime.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-03-24 16:23+0000\n"
+"POT-Creation-Date: 2021-01-06 10:49+0000\n"
"PO-Revision-Date: 2015-09-05 08:33+0000\n"
"Last-Translator: Daniel James If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:493 +msgid "On Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:494 +msgid "Off Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:495 +msgid "Offline" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:179 -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:183 -msgid "That username or email address could not be found." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" +#: airtime_mvc/application/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" msgstr "" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" +#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 #, php-format -msgid "Use %s Authentication:" +msgid "The value should be less than %s characters" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -msgid "days" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" msgstr "" #: airtime_mvc/application/forms/AddShowRepeats.php:10 @@ -2632,8 +3877,9 @@ msgid "day of the week" msgstr "" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "" @@ -2649,77 +3895,9 @@ msgstr "" msgid "Please select a repeat day" 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/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -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:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" msgstr "" #: airtime_mvc/application/forms/AddShowWhen.php:16 @@ -2730,6 +3908,7 @@ msgstr "" msgid "Start Time:" msgstr "" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "" @@ -2738,12 +3917,6 @@ msgstr "" msgid "End Time:" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "" @@ -2761,7 +3934,7 @@ msgid "Cannot modify start date/time of the show that is already started" msgstr "" #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "" @@ -2777,32 +3950,17 @@ msgstr "" msgid "Cannot have duration greater than 24h" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -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/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "" #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "" @@ -2823,8 +3981,6 @@ msgstr "" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "" @@ -2848,112 +4004,159 @@ msgid "User Type:" msgstr "" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "" -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" msgstr "" -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" msgstr "" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 +msgid "Day must be specified" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 +msgid "Time must be specified" msgstr "" -#: airtime_mvc/application/forms/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" +#: 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/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" msgstr "" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "" @@ -2962,12 +4165,10 @@ msgid "Station Description" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "" @@ -2990,93 +4191,82 @@ msgstr "" msgid "Default Fade Out (s):" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:120 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:111 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgid "Intro Autoloading Playlist" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public LibreTime API" +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 -msgid "Required for embeddable schedule widget." +msgid "Overwrite Podcast Episode Metatags" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" 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" +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" msgstr "" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 @@ -3121,16 +4311,6 @@ msgstr "" msgid "Show Source Mount:" msgstr "" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "" - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3144,24 +4324,96 @@ msgstr "" msgid "Password confirmation does not match your password." msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "" + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" msgstr "" #: airtime_mvc/application/forms/Player.php:14 @@ -3188,279 +4440,53 @@ msgstr "" msgid " - The player does not support Opus streams." msgstr "" -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - #: airtime_mvc/application/forms/Player.php:72 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -msgid "Preview:" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" +#: 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/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "" - -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "" - -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -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:597 -msgid "The value has to be numeric" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -msgid "Default License:" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -msgid "The work is in the public domain" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -msgid "Creative Commons Attribution" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -msgid "Creative Commons Attribution Noncommercial" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -msgid "Creative Commons Attribution Share Alike" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" msgstr "" #: airtime_mvc/application/forms/StreamSetting.php:26 @@ -3539,379 +4565,636 @@ msgstr "" msgid "Custom / 3rd Party Streaming" msgstr "" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -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/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -msgid "Set Cue In" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -msgid "Set Cue Out" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read on to find out more." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -" is easier than ever." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -" just a click away, you'll be on air and hands-free in no time." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "" - -#: 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/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/DateHelper.php:213 #, php-format -msgid "%1$s copyright © %2$s All rights reserved.If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:493 +msgid "On Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:494 +msgid "Off Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:495 +msgid "Offline" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:179 -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:183 -msgid "That username or email address could not be found." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "Погрешно корисничко име или лозинка. Молимо покушај поново." - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "Гледаш старију верзију %s" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Не можеш да додаш песме за динамичне блокове." - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Немаш допуштење за брисање одабраног (е) %s." - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "Можеш само песме да додаш за паметног блока." - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "Неименовани Списак Песама" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "Неименовани Smart Block" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "Непознати Списак Песама" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "Подешавања су ажуриране." - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "Подршка подешавања је ажурирана." - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "Повратне Информације" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "Пренос Подешавање је Ажурирано." - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "пут би требао да буде специфициран" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "Проблем са Liquidsoap..." - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "Реемитовање емисија %s од %s на %s" -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" -msgstr "Одабери показивач" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" +msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" -msgstr "Уклони показивач" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" +msgstr "Снимљена датотека не постоји" -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" -msgstr "емисија не постоји" +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" +msgstr "Метаподаци снимљеног фајла" -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "Корисник је успешно додат!" +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "" -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "Корисник је успешно ажуриран!" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "" -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "Подешавања су успешно ажуриране!" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" +msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Неименовани Пренос" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" +msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Пренос је сачуван." +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" +msgstr "Уређивање Програма" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Неважећи вредности обрасца." +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Унесени су неважећи знакови" +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Дан мора да буде наведен" +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" +msgstr "Дозвола одбијена" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "Време мора да буде наведено" +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" +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 "Мораш да чекаш најмање 1 сат за ре-емитовање" +#: airtime_mvc/application/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "Не можеш преместити догађане емисије" + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "Не можеш преместити емисију у прошлости" + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "Не можеш заказати преклапајуће емисије" + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Не можеш преместити снимљене емисије раније од 1 сат времена пре њених реемитовања." + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Емисија је избрисана јер је снимљена емисија не постоји!" + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Мораш причекати 1 сат за ре-емитовање." + +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "Песма" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "Време Почетка" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "Време Завршетка" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" +msgstr "Пуштена" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" +#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr "Одабери критеријуме" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "Брзина у Битовима (Kbps)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "Узорак Стопа (kHz)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "сати" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "минути" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "елементи" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "Динамички" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "Статички" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "Генерисање листе песама и чување садржаја критеријуме" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "Садржај случајни избор списак песама" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Ограничење не може да буде празан или мањи од 0" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "Ограничење не може да буде више од 24 сати" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "Вредност мора да буде цео број" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "500 је макс ставу граничну вредност могуће је да подесиш" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "Мораш да изабереш Критерију и Модификацију" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "'Дужина' требала да буде у '00:00:00' облику" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Вредност мора да буде у облику временске ознаке (нпр. 0000-00-00 или 0000-00-00 00:00:00)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "Вредност мора да буде нумеричка" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "Вредност би требала да буде мања од 2147483648" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 #, php-format -msgid "Use %s Authentication:" +msgid "The value should be less than %s characters" +msgstr "Вредност мора да буде мања од %s знакова" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" +msgstr "Вредност не може да буде празна" + +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "Користи Прилагођено потврду идентитета:" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "Прилагођено Корисничко Име" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Прилагођена Лозинка" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "ISRC Број:" + +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" +msgstr "Увозна Мапа:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "'Корисничко Име' поља не сме да остане празно." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" +msgstr "Мапе Под Надзором:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "'Лозинка' поља не сме да остане празно." - -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -msgid "days" -msgstr "дани" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" +msgstr "Не важећи Директоријум" #: airtime_mvc/application/forms/AddShowRepeats.php:10 msgid "Link:" @@ -2635,8 +3881,9 @@ msgid "day of the week" msgstr "дан у недељи" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "Датум Завршетка:" @@ -2652,78 +3899,10 @@ msgstr "Датум завршетка мора да буде после дату msgid "Please select a repeat day" msgstr "Молимо, одабери којег дана" -#: airtime_mvc/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Снимање са Line In?" - -#: airtime_mvc/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Поново да емитује?" - -#: airtime_mvc/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "Боја Позадине:" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "Боја Текста:" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -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 "URL:" - -#: airtime_mvc/application/forms/AddShowWhat.php:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "Жанр:" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "Опис:" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" +msgstr "Вредност је потребна и не може да буде празан" #: airtime_mvc/application/forms/AddShowWhen.php:16 msgid "'%value%' does not fit the time format 'HH:mm'" @@ -2733,6 +3912,7 @@ msgstr "'%value%' се не уклапа у временском формату msgid "Start Time:" msgstr "" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "" @@ -2741,12 +3921,6 @@ msgstr "" msgid "End Time:" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "Трајање:" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "Временска Зона:" @@ -2764,7 +3938,7 @@ msgid "Cannot modify start date/time of the show that is already started" msgstr "Не можеш да мењаш датум/време почетак емисије, ако је већ почела" #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "Датум завршетка и време не може да буде у прошлости" @@ -2780,32 +3954,17 @@ msgstr "Не може да траје 00h 00m" msgid "Cannot have duration greater than 24h" msgstr "Не може да траје више од 24h" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -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/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "Корисничко име:" #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "Лозинка:" @@ -2826,8 +3985,6 @@ msgstr "Презиме:" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "Е-маил:" @@ -2851,112 +4008,159 @@ msgid "User Type:" msgstr "Типова Корисника:" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "Име пријаве није јединствено." -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Вредност је потребна и не може да буде празан" - -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" msgstr "" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" +msgstr "Користи Прилагођено потврду идентитета:" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "Прилагођено Корисничко Име" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Прилагођена Лозинка" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "'Корисничко Име' поља не сме да остане празно." + +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "'Лозинка' поља не сме да остане празно." + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "Станична Временска Зона" + +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "Датум Почетка:" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" -msgstr "Назив:" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" +msgstr "Унесени су неважећи знакови" -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" -msgstr "Творац:" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" +msgstr "Тражи Кориснике:" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" -msgstr "Aлбум:" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" +msgstr "Диск-џокеји:" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" -msgstr "Година:" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" -msgstr "Налепница:" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" +msgstr "Све Моје Емисије:" -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" -msgstr "Композитор:" +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" -msgstr "Диригент:" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" +msgstr "Боја Позадине:" -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" -msgstr "Расположење:" +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" +msgstr "Боја Текста:" -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" -msgstr "BPM:" +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" -msgstr "Ауторско право:" +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" -msgstr "ISRC Број:" +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" -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/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" -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/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" -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 "Мораш да чекаш најмање 1 сат за ре-емитовање" -#: airtime_mvc/application/forms/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" -msgstr "Време Завршетка" +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Неименована Емисија" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Временска Зона Интерфејси:" +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "Назив Станице" @@ -2965,12 +4169,10 @@ msgid "Station Description" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "Лого:" #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "Напомена: Све већа од 600к600 ће да се мењају." @@ -2993,94 +4195,83 @@ msgstr "Подразумевано Одтамњење (s):" msgid "Default Fade Out (s):" msgstr "Подразумевано Затамњење (s):" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 -msgid "Overwrite Podcast Episode Metatags" +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:120 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "Онемогућено" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" -msgstr "Омогућено" - #: airtime_mvc/application/forms/GeneralPreferences.php:111 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgid "Intro Autoloading Playlist" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public LibreTime API" +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 -msgid "Required for embeddable schedule widget." +msgid "Overwrite Podcast Episode Metatags" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "Станична Временска Зона" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "Први Дан у Недељи" -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' није ваљана е-маил адреса у основном облику local-part@hostname" +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" +msgstr "Снимање са Line In?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' не одговара по облику датума '%format%'" +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" +msgstr "Поново да емитује?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' је мањи од %min% дугачко знакова" +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" +msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' је више од %max% дугачко знакова" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' није између '%min%' и '%max%', укључиво" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "Лозинке се не подударају" +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" +msgstr "Ресетуј лозинку" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 msgid "Auto Switch Off:" @@ -3124,16 +4315,6 @@ msgstr "" msgid "Show Source Mount:" msgstr "" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "Пријава" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "Упиши знаке које видиш на слици у наставку." - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3147,26 +4328,98 @@ msgstr "Потврди нову лозинку" msgid "Password confirmation does not match your password." msgstr "Лозинке које сте унели не подударају се." -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" -msgstr "Корисничко име" - -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Ресетуј лозинку" - -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" msgstr "" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "дани" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Омогућено:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "Пренос Типа:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "Тип Услуге:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "Канали:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "1 - Mono" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "2 - Stereo" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "Сервер" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "Порт" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "URL" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "Тачка Монтирања" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "Админ Корисник" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "Aдминска Лозинка" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "Сервер не може да буде празан." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "Port не може да буде празан." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "Монтирање не може да буде празна са Icecast сервером." + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "Временска Зона Интерфејси:" + #: airtime_mvc/application/forms/Player.php:14 msgid "Now Playing" msgstr "Тренутно Извођена" @@ -3191,280 +4444,54 @@ msgstr "" msgid " - The player does not support Opus streams." msgstr "" -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - #: airtime_mvc/application/forms/Player.php:72 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -msgid "Preview:" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" -msgstr "Телефон:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" -msgstr "Веб Страница:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" -msgstr "Држава:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" -msgstr "Град:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" -msgstr "Опис:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' није ваљана е-маил адреса у основном облику local-part@hostname" -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "Мораш да пристанеш на правила о приватности." +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' не одговара по облику датума '%format%'" -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' је мањи од %min% дугачко знакова" -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' је више од %max% дугачко знакова" -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "Све Моје Емисије:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' није између '%min%' и '%max%', укључиво" -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr "Одабери критеријуме" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "Брзина у Битовима (Kbps)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "Опис" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "Узорак Стопа (kHz)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "сати" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "минути" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "елементи" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "Статички" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "Динамички" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "Генерисање листе песама и чување садржаја критеријуме" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "Генериши" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "Садржај случајни избор списак песама" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "Мешање" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Ограничење не може да буде празан или мањи од 0" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "Ограничење не може да буде више од 24 сати" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "Вредност мора да буде цео број" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "500 је макс ставу граничну вредност могуће је да подесиш" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "Мораш да изабереш Критерију и Модификацију" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "'Дужина' требала да буде у '00:00:00' облику" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Вредност мора да буде у облику временске ознаке (нпр. 0000-00-00 или 0000-00-00 00:00:00)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:597 -msgid "The value has to be numeric" -msgstr "Вредност мора да буде нумеричка" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "Вредност би требала да буде мања од 2147483648" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Вредност мора да буде мања од %s знакова" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "Вредност не може да буде празна" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -msgid "Default License:" -msgstr "Задата Дозвола:" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "Сва права задржана" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -msgid "The work is in the public domain" -msgstr "Рад је у јавном домену" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Именовање" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -msgid "Creative Commons Attribution Noncommercial" -msgstr "Creative Commons Именовање Некомерцијално" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "Creative Commons Именовање Без Изведених Дела" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -msgid "Creative Commons Attribution Share Alike" -msgstr "Creative Commons Дели Под Истим Условима" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "Creative Commons Именовање Некомерцијално Без Изведених Дела" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "Creative Commons Именовање Некомерцијално Дијели Под Истим Условима" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" +msgstr "Лозинке се не подударају" #: airtime_mvc/application/forms/StreamSetting.php:26 msgid "Hardware Audio Output:" @@ -3542,381 +4569,636 @@ msgstr "" msgid "Custom / 3rd Party Streaming" msgstr "" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Омогућено:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Пренос Типа:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "Брзина у Битовима:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Тип Услуге:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Канали:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Mono" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Stereo" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Сервер" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Порт" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "Назив" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Тачка Монтирања" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Админ Корисник" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Aдминска Лозинка" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Сервер не може да буде празан." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "Port не може да буде празан." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Монтирање не може да буде празна са Icecast сервером." - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -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/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "Покрени" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "Стани" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -msgid "Set Cue In" -msgstr "Подеси Cue In" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -msgid "Set Cue Out" -msgstr "Подеси Cue Out" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "Показивач" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read on to find out more." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -" is easier than ever." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -" just a click away, you'll be on air and hands-free in no time." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "" - -#: 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/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/DateHelper.php:213 #, php-format -msgid "%1$s copyright © %2$s All rights reserved.If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:493 +msgid "On Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:494 +msgid "Off Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:495 +msgid "Offline" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:179 -msgid "Email could not be sent. Check your mail server settings and ensure it has been configured properly." -msgstr "E-mail nije mogao da bude poslat. Proveri svoje postavke servera pošte i proveri se da je ispravno podešen." - -#: airtime_mvc/application/controllers/LoginController.php:183 -msgid "That username or email address could not be found." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "Pogrešno korisničko ime ili lozinka. Molimo pokušaj ponovo." - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "Gledaš stariju verziju %s" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "Ne možeš da dodaš pesme za dinamične blokove." - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "Nemaš dopuštenje za brisanje odabranog (e) %s." - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "Možeš samo pesme da dodaš za pametnog bloka." - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "Neimenovani Spisak Pesama" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "Neimenovani Smart Block" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "Nepoznati Spisak Pesama" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "Podešavanja su ažurirane." - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "Podrška podešavanja je ažurirana." - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "Povratne Informacije" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "Prenos Podešavanje je Ažurirano." - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "put bi trebao da bude specificiran" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "Problem sa Liquidsoap..." - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "Reemitovanje emisija %s od %s na %s" -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" -msgstr "Odaberi pokazivač" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" +msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" -msgstr "Ukloni pokazivač" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" +msgstr "Snimljena datoteka ne postoji" -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" -msgstr "emisija ne postoji" +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" +msgstr "Metapodaci snimljenog fajla" -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "Korisnik je uspešno dodat!" +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "" -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "Korisnik je uspešno ažuriran!" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "" -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "Podešavanja su uspešno ažurirane!" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" +msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "Neimenovani Prenos" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" +msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "Prenos je sačuvan." +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" +msgstr "Uređivanje Programa" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "Nevažeći vrednosti obrasca." +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Uneseni su nevažeći znakovi" +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Dan mora da bude naveden" +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" +msgstr "Dozvola odbijena" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "Vreme mora da bude navedeno" +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" +msgstr "Ne možeš povući i ispustiti ponavljajuće emisije" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" -msgstr "Moraš da čekaš najmanje 1 sat za re-emitovanje" +#: airtime_mvc/application/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "Ne možeš premestiti događane emisije" + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "Ne možeš premestiti emisiju u prošlosti" + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "Ne možeš zakazati preklapajuće emisije" + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "Ne možeš premestiti snimljene emisije ranije od 1 sat vremena pre njenih reemitovanja." + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "Emisija je izbrisana jer je snimljena emisija ne postoji!" + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." +msgstr "Moraš pričekati 1 sat za re-emitovanje." + +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "Pesma" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "Vreme Početka" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "Vreme Završetka" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" +msgstr "Puštena" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" +#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr "Odaberi kriterijume" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "Brzina u Bitovima (Kbps)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "Uzorak Stopa (kHz)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "sati" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "minuti" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "elementi" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "Dinamički" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "Statički" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "Generisanje liste pesama i čuvanje sadržaja kriterijume" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "Sadržaj slučajni izbor spisak pesama" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Ograničenje ne može da bude prazan ili manji od 0" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "Ograničenje ne može da bude više od 24 sati" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "Vrednost mora da bude ceo broj" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "500 je maks stavu graničnu vrednost moguće je da podesiš" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "Moraš da izabereš Kriteriju i Modifikaciju" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "'Dužina' trebala da bude u '00:00:00' obliku" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Vrednost mora da bude u obliku vremenske oznake (npr. 0000-00-00 ili 0000-00-00 00:00:00)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "Vrednost mora da bude numerička" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "Vrednost bi trebala da bude manja od 2147483648" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 #, php-format -msgid "Use %s Authentication:" +msgid "The value should be less than %s characters" +msgstr "Vrednost mora da bude manja od %s znakova" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" +msgstr "Vrednost ne može da bude prazna" + +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "Koristi Prilagođeno potvrdu identiteta:" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "Prilagođeno Korisničko Ime" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Prilagođena Lozinka" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "ISRC Broj:" + +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" +msgstr "Uvozna Mapa:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "'Korisničko Ime' polja ne sme da ostane prazno." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" +msgstr "Mape Pod Nadzorom:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "'Lozinka' polja ne sme da ostane prazno." - -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -msgid "days" -msgstr "dani" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" +msgstr "Ne važeći Direktorijum" #: airtime_mvc/application/forms/AddShowRepeats.php:10 msgid "Link:" @@ -2635,8 +3881,9 @@ msgid "day of the week" msgstr "dan u nedelji" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "Datum Završetka:" @@ -2652,78 +3899,10 @@ msgstr "Datum završetka mora da bude posle datuma početka" msgid "Please select a repeat day" msgstr "Molimo, odaberi kojeg dana" -#: airtime_mvc/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Snimanje sa Line In?" - -#: airtime_mvc/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Ponovo da emituje?" - -#: airtime_mvc/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "Boja Pozadine:" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "Boja Teksta:" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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 "Ukloni" - -#: airtime_mvc/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -msgid "Name:" -msgstr "Naziv:" - -#: airtime_mvc/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -msgstr "Neimenovana Emisija" - -#: airtime_mvc/application/forms/AddShowWhat.php:36 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:150 -msgid "URL:" -msgstr "URL:" - -#: airtime_mvc/application/forms/AddShowWhat.php:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "Žanr:" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "Opis:" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" +msgstr "Vrednost je potrebna i ne može da bude prazan" #: airtime_mvc/application/forms/AddShowWhen.php:16 msgid "'%value%' does not fit the time format 'HH:mm'" @@ -2733,6 +3912,7 @@ msgstr "'%value%' se ne uklapa u vremenskom formatu 'HH:mm'" msgid "Start Time:" msgstr "" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "" @@ -2741,12 +3921,6 @@ msgstr "" msgid "End Time:" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "Trajanje:" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "Vremenska Zona:" @@ -2764,7 +3938,7 @@ msgid "Cannot modify start date/time of the show that is already started" msgstr "Ne možeš da menjaš datum/vreme početak emisije, ako je već počela" #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "Datum završetka i vreme ne može da bude u prošlosti" @@ -2780,32 +3954,17 @@ msgstr "Ne može da traje 00h 00m" msgid "Cannot have duration greater than 24h" msgstr "Ne može da traje više od 24h" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -msgstr "Ne možeš zakazati preklapajuće emisije" - -#: airtime_mvc/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Traži Korisnike:" - -#: airtime_mvc/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "Disk-džokeji:" - #: airtime_mvc/application/forms/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "Korisničko ime:" #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "Lozinka:" @@ -2826,8 +3985,6 @@ msgstr "Prezime:" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "E-mail:" @@ -2851,112 +4008,159 @@ msgid "User Type:" msgstr "Tipova Korisnika:" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "Ime prijave nije jedinstveno." -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Vrednost je potrebna i ne može da bude prazan" - -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" msgstr "" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" +msgstr "Koristi Prilagođeno potvrdu identiteta:" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "Prilagođeno Korisničko Ime" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Prilagođena Lozinka" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "'Korisničko Ime' polja ne sme da ostane prazno." + +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "'Lozinka' polja ne sme da ostane prazno." + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "Stanična Vremenska Zona" + +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "Datum Početka:" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" -msgstr "Naziv:" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" +msgstr "Uneseni su nevažeći znakovi" -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" -msgstr "Tvorac:" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" +msgstr "Traži Korisnike:" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" -msgstr "Album:" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" +msgstr "Disk-džokeji:" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" -msgstr "Godina:" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" -msgstr "Nalepnica:" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" +msgstr "Sve Moje Emisije:" -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" -msgstr "Kompozitor:" +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" -msgstr "Dirigent:" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" +msgstr "Boja Pozadine:" -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" -msgstr "Raspoloženje:" +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" +msgstr "Boja Teksta:" -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" -msgstr "BPM:" +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" -msgstr "Autorsko pravo:" +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" -msgstr "ISRC Broj:" +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" -msgstr "Veb stranica:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 +msgid "Day must be specified" +msgstr "Dan mora da bude naveden" -#: airtime_mvc/application/forms/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" -msgstr "Jezik:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 +msgid "Time must be specified" +msgstr "Vreme mora da bude navedeno" -#: airtime_mvc/application/forms/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" -msgstr "Vreme Početka" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Moraš da čekaš najmanje 1 sat za re-emitovanje" -#: airtime_mvc/application/forms/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" -msgstr "Vreme Završetka" +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "Neimenovana Emisija" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Vremenska Zona Interfejsi:" +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "Naziv Stanice" @@ -2965,12 +4169,10 @@ msgid "Station Description" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "Logo:" #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "Napomena: Sve veća od 600k600 će da se menjaju." @@ -2993,94 +4195,83 @@ msgstr "Podrazumevano Odtamnjenje (s):" msgid "Default Fade Out (s):" msgstr "Podrazumevano Zatamnjenje (s):" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 -msgid "Overwrite Podcast Episode Metatags" +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:120 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "Onemogućeno" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" -msgstr "Omogućeno" - #: airtime_mvc/application/forms/GeneralPreferences.php:111 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgid "Intro Autoloading Playlist" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public LibreTime API" +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 -msgid "Required for embeddable schedule widget." +msgid "Overwrite Podcast Episode Metatags" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "Stanična Vremenska Zona" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "Prvi Dan u Nedelji" -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' nije valjana e-mail adresa u osnovnom obliku local-part@hostname" +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" +msgstr "Snimanje sa Line In?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' ne odgovara po obliku datuma '%format%'" +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" +msgstr "Ponovo da emituje?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' je manji od %min% dugačko znakova" +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" +msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' je više od %max% dugačko znakova" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' nije između '%min%' i '%max%', uključivo" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "Lozinke se ne podudaraju" +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" +msgstr "Resetuj lozinku" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 msgid "Auto Switch Off:" @@ -3124,16 +4315,6 @@ msgstr "" msgid "Show Source Mount:" msgstr "" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "Prijava" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "Upiši znake koje vidiš na slici u nastavku." - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3147,26 +4328,98 @@ msgstr "Potvrdi novu lozinku" msgid "Password confirmation does not match your password." msgstr "Lozinke koje ste uneli ne podudaraju se." -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" -msgstr "Korisničko ime" - -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Resetuj lozinku" - -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" msgstr "" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "dani" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Omogućeno:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "Prenos Tipa:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "Tip Usluge:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "Kanali:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "1 - Mono" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "2 - Stereo" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "Server" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "Port" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "URL" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "Tačka Montiranja" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "Admin Korisnik" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "Adminska Lozinka" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "Server ne može da bude prazan." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "Port ne može da bude prazan." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "Montiranje ne može da bude prazna sa Icecast serverom." + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "Vremenska Zona Interfejsi:" + #: airtime_mvc/application/forms/Player.php:14 msgid "Now Playing" msgstr "Trenutno Izvođena" @@ -3191,280 +4444,54 @@ msgstr "" msgid " - The player does not support Opus streams." msgstr "" -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - #: airtime_mvc/application/forms/Player.php:72 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -msgid "Preview:" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" -msgstr "Telefon:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" -msgstr "Veb Stranica:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" -msgstr "Država:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" -msgstr "Grad:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" -msgstr "Opis:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' nije valjana e-mail adresa u osnovnom obliku local-part@hostname" -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "Moraš da pristaneš na pravila o privatnosti." +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' ne odgovara po obliku datuma '%format%'" -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' je manji od %min% dugačko znakova" -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' je više od %max% dugačko znakova" -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "Sve Moje Emisije:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' nije između '%min%' i '%max%', uključivo" -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr "Odaberi kriterijume" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "Brzina u Bitovima (Kbps)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "Opis" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "Uzorak Stopa (kHz)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "sati" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "minuti" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "elementi" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "Statički" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "Dinamički" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "Generisanje liste pesama i čuvanje sadržaja kriterijume" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "Generiši" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "Sadržaj slučajni izbor spisak pesama" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "Mešanje" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Ograničenje ne može da bude prazan ili manji od 0" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "Ograničenje ne može da bude više od 24 sati" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "Vrednost mora da bude ceo broj" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "500 je maks stavu graničnu vrednost moguće je da podesiš" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "Moraš da izabereš Kriteriju i Modifikaciju" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "'Dužina' trebala da bude u '00:00:00' obliku" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Vrednost mora da bude u obliku vremenske oznake (npr. 0000-00-00 ili 0000-00-00 00:00:00)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:597 -msgid "The value has to be numeric" -msgstr "Vrednost mora da bude numerička" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "Vrednost bi trebala da bude manja od 2147483648" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Vrednost mora da bude manja od %s znakova" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "Vrednost ne može da bude prazna" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -msgid "Default License:" -msgstr "Zadata Dozvola:" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "Sva prava zadržana" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -msgid "The work is in the public domain" -msgstr "Rad je u javnom domenu" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -msgid "Creative Commons Attribution" -msgstr "Creative Commons Imenovanje" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -msgid "Creative Commons Attribution Noncommercial" -msgstr "Creative Commons Imenovanje Nekomercijalno" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "Creative Commons Imenovanje Bez Izvedenih Dela" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -msgid "Creative Commons Attribution Share Alike" -msgstr "Creative Commons Deli Pod Istim Uslovima" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "Creative Commons Imenovanje Nekomercijalno Bez Izvedenih Dela" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "Creative Commons Imenovanje Nekomercijalno Dijeli Pod Istim Uslovima" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" +msgstr "Lozinke se ne podudaraju" #: airtime_mvc/application/forms/StreamSetting.php:26 msgid "Hardware Audio Output:" @@ -3542,381 +4569,636 @@ msgstr "" msgid "Custom / 3rd Party Streaming" msgstr "" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Omogućeno:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Prenos Tipa:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "Brzina u Bitovima:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Tip Usluge:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Kanali:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Mono" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Stereo" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Server" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Port" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "Naziv" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Tačka Montiranja" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Admin Korisnik" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Adminska Lozinka" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Server ne može da bude prazan." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "Port ne može da bude prazan." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Montiranje ne može da bude prazna sa Icecast serverom." - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "Uvozna Mapa:" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "Mape Pod Nadzorom:" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "Ne važeći Direktorijum" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "Pokreni" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "Stani" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -msgid "Set Cue In" -msgstr "Podesi Cue In" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -msgid "Set Cue Out" -msgstr "Podesi Cue Out" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "Pokazivač" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read on to find out more." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -" is easier than ever." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -" just a click away, you'll be on air and hands-free in no time." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/livestream.phtml:9 -#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2 -msgid "Live stream" -msgstr "Prenos uživo" - -#: airtime_mvc/application/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/DateHelper.php:213 #, php-format -msgid "%1$s copyright © %2$s All rights reserved.If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:493 +msgid "On Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:494 +msgid "Off Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:495 +msgid "Offline" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:179 -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:183 -msgid "That username or email address could not be found." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 -msgid "Must wait at least 1 hour to rebroadcast" +#: airtime_mvc/application/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" msgstr "" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" +#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 #, php-format -msgid "Use %s Authentication:" +msgid "The value should be less than %s characters" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -msgid "days" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" msgstr "" #: airtime_mvc/application/forms/AddShowRepeats.php:10 @@ -2631,8 +3877,9 @@ msgid "day of the week" msgstr "" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "" @@ -2648,77 +3895,9 @@ msgstr "" msgid "Please select a repeat day" 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/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -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:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" msgstr "" #: airtime_mvc/application/forms/AddShowWhen.php:16 @@ -2729,6 +3908,7 @@ msgstr "" msgid "Start Time:" msgstr "" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "" @@ -2737,12 +3917,6 @@ msgstr "" msgid "End Time:" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "" @@ -2760,7 +3934,7 @@ msgid "Cannot modify start date/time of the show that is already started" msgstr "" #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "" @@ -2776,32 +3950,17 @@ msgstr "" msgid "Cannot have duration greater than 24h" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -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/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "" #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "" @@ -2822,8 +3981,6 @@ msgstr "" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "" @@ -2847,112 +4004,159 @@ msgid "User Type:" msgstr "" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "" -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" msgstr "" -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" msgstr "" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 +msgid "Day must be specified" msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 +msgid "Time must be specified" msgstr "" -#: airtime_mvc/application/forms/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" +#: 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/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" msgstr "" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "" @@ -2961,12 +4165,10 @@ msgid "Station Description" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "" @@ -2989,93 +4191,82 @@ msgstr "" msgid "Default Fade Out (s):" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 -msgid "Overwrite Podcast Episode Metatags" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:120 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:111 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgid "Intro Autoloading Playlist" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public LibreTime API" +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 -msgid "Required for embeddable schedule widget." +msgid "Overwrite Podcast Episode Metatags" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" 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" +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" msgstr "" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 @@ -3120,16 +4311,6 @@ msgstr "" msgid "Show Source Mount:" msgstr "" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "" - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3143,24 +4324,96 @@ msgstr "" msgid "Password confirmation does not match your password." msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "" + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" msgstr "" #: airtime_mvc/application/forms/Player.php:14 @@ -3187,279 +4440,53 @@ msgstr "" msgid " - The player does not support Opus streams." msgstr "" -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - #: airtime_mvc/application/forms/Player.php:72 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -msgid "Preview:" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" +#: 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/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "" - -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "" - -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "" - -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -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:597 -msgid "The value has to be numeric" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -msgid "Default License:" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -msgid "The work is in the public domain" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -msgid "Creative Commons Attribution" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -msgid "Creative Commons Attribution Noncommercial" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -msgid "Creative Commons Attribution Share Alike" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" msgstr "" #: airtime_mvc/application/forms/StreamSetting.php:26 @@ -3538,379 +4565,636 @@ msgstr "" msgid "Custom / 3rd Party Streaming" msgstr "" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -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/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -msgid "Set Cue In" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -msgid "Set Cue Out" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read on to find out more." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -" is easier than ever." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -" just a click away, you'll be on air and hands-free in no time." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "" - -#: 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/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/DateHelper.php:213 #, php-format -msgid "%1$s copyright © %2$s All rights reserved.If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:493 +msgid "On Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:494 +msgid "Off Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:495 +msgid "Offline" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:179 -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:183 -msgid "That username or email address could not be found." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "" - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" msgstr "" -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "Yanlış karakter girdiniz" +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "Günü belirtmelisiniz" +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "Zamanı belirtmelisiniz" +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" +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 "Tekrar yayın yapmak için en az bir saat bekleyiniz" +#: airtime_mvc/application/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "Üst üste binen show'lar olamaz" + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "" + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "Başlangıç Saati" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "Bitiş Saati" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" +msgstr "" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" +#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr "Kriter seçiniz" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "Bit Oranı (Kbps)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "Örnekleme Oranı (kHz)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "saat" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "dakika" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "parça" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "Dinamik" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "Sabit" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "Çalma listesi içeriği oluştur ve kriterleri kaydet" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "Çalma listesi içeriğini karıştır" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "Sınırlama boş veya 0'dan küçük olamaz" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "Sınırlama 24 saati geçemez" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "Değer tamsayı olmalıdır" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "Ayarlayabileceğiniz azami parça sınırı 500'dür" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "Kriter ve Değişken seçin" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "Uzunluk '00:00:00' türünde olmalıdır" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "Değer saat biçiminde girilmelidir (eör. 0000-00-00 veya 0000-00-00 00:00:00)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "Değer rakam cinsinden girilmelidir" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "Değer 2147483648'den küçük olmalıdır" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 #, php-format -msgid "Use %s Authentication:" -msgstr "%s Kimlik Doğrulamasını Kullan" +msgid "The value should be less than %s characters" +msgstr "Değer %s karakter'den az olmalıdır" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "Özel Kimlik Doğrulama Kullan" +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" +msgstr "Değer boş bırakılamaz" -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "Özel Kullanıcı Adı" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "Özel Şifre" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "ISRC No:" + +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "Kullanıcı adı kısmı boş bırakılamaz." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" +msgstr "İçe Aktarım Klasörü" -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "Şifre kısmı boş bırakılamaz." +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" +msgstr "İzlenen Klasörler:" -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -msgid "days" -msgstr "gün" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" +msgstr "Geçerli bir Klasör değil." #: airtime_mvc/application/forms/AddShowRepeats.php:10 msgid "Link:" @@ -2633,8 +3878,9 @@ msgid "day of the week" msgstr "Haftanın günü" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "Tarih Bitişi:" @@ -2650,78 +3896,10 @@ msgstr "Bitiş tarihi başlangıç tarihinden sonra olmalı" msgid "Please select a repeat day" msgstr "Lütfen tekrar edilmesini istediğiniz günleri seçiniz" -#: airtime_mvc/application/forms/AddShowRR.php:10 -msgid "Record from Line In?" -msgstr "Line In'den Kaydet?" - -#: airtime_mvc/application/forms/AddShowRR.php:16 -msgid "Rebroadcast?" -msgstr "Tekrar yayınla?" - -#: airtime_mvc/application/forms/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "Arkaplan Rengi" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "Metin Rengi:" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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 "Kaldır" - -#: airtime_mvc/application/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -msgid "Name:" -msgstr "İsim:" - -#: airtime_mvc/application/forms/AddShowWhat.php:30 -msgid "Untitled Show" -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 "URL" - -#: airtime_mvc/application/forms/AddShowWhat.php:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "Tür:" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "Açıklama:" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" +msgstr "Değer gerekli ve boş bırakılamaz" #: airtime_mvc/application/forms/AddShowWhen.php:16 msgid "'%value%' does not fit the time format 'HH:mm'" @@ -2731,6 +3909,7 @@ msgstr "'%value%' değeri 'HH:mm' saat formatına uymuyor" msgid "Start Time:" msgstr "" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "" @@ -2739,12 +3918,6 @@ msgstr "" msgid "End Time:" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "Uzunluğu:" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "Zaman Dilimi:" @@ -2762,7 +3935,7 @@ msgid "Cannot modify start date/time of the show that is already started" msgstr "Başlamış olan bir yayının tarih/saat bilgilerini değiştiremezsiniz" #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "Bitiş tarihi geçmişte olamaz" @@ -2778,32 +3951,17 @@ msgstr "00s 00dk Uzunluk olamaz" msgid "Cannot have duration greater than 24h" msgstr "Yayın süresi 24 saati geçemez" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -msgstr "Üst üste binen show'lar olamaz" - -#: airtime_mvc/application/forms/AddShowWho.php:10 -msgid "Search Users:" -msgstr "Kullanıcıları Ara:" - -#: airtime_mvc/application/forms/AddShowWho.php:24 -msgid "DJs:" -msgstr "DJ'ler:" - #: airtime_mvc/application/forms/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "Kullanıcı Adı:" #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "Şifre:" @@ -2824,8 +3982,6 @@ msgstr "Soyisim:" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "Eposta:" @@ -2849,112 +4005,159 @@ msgid "User Type:" msgstr "Kullanıcı Tipi:" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "Kullanıcı adı eşsiz değil." -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "Değer gerekli ve boş bırakılamaz" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" +msgstr "%s Kimlik Doğrulamasını Kullan" -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" +msgstr "Özel Kimlik Doğrulama Kullan" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "Özel Kullanıcı Adı" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "Özel Şifre" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" msgstr "" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "Kullanıcı adı kısmı boş bırakılamaz." + +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "Şifre kısmı boş bırakılamaz." + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "Radyo Saat Dilimi" + +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "Tarih Başlangıcı:" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" -msgstr "Parça Adı:" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" +msgstr "Yanlış karakter girdiniz" -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" -msgstr "Oluşturan:" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" +msgstr "Kullanıcıları Ara:" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" -msgstr "Albüm:" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" +msgstr "DJ'ler:" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" -msgstr "Yıl:" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" -msgstr "Plak Şirketi:" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" +msgstr "Tüm Show'larım:" -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" -msgstr "Besteleyen:" +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" -msgstr "Orkestra Şefi:" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" +msgstr "Arkaplan Rengi" -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" -msgstr "Ruh Hali:" +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" +msgstr "Metin Rengi:" -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" -msgstr "BPM:" +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" -msgstr "Telif Hakkı:" +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" -msgstr "ISRC No:" +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" -msgstr "Websitesi:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 +msgid "Day must be specified" +msgstr "Günü belirtmelisiniz" -#: airtime_mvc/application/forms/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" -msgstr "Dil:" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 +msgid "Time must be specified" +msgstr "Zamanı belirtmelisiniz" -#: airtime_mvc/application/forms/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" -msgstr "Başlangıç Saati" +#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:94 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:103 +msgid "Must wait at least 1 hour to rebroadcast" +msgstr "Tekrar yayın yapmak için en az bir saat bekleyiniz" -#: airtime_mvc/application/forms/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" -msgstr "Bitiş Saati" +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "İsimsiz Show" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "Arayüz Zaman Dilimi" +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "Radyo Adı" @@ -2963,12 +4166,10 @@ msgid "Station Description" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "Radyo Logosu:" #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "" @@ -2991,94 +4192,83 @@ msgstr "Varsayılan Fade In geçişi (s)" msgid "Default Fade Out (s):" msgstr "Varsayılan Fade Out geçişi (s)" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 -msgid "Overwrite Podcast Episode Metatags" +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:120 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "Devre dışı" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" -msgstr "Aktif" - #: airtime_mvc/application/forms/GeneralPreferences.php:111 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgid "Intro Autoloading Playlist" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public LibreTime API" +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 -msgid "Required for embeddable schedule widget." +msgid "Overwrite Podcast Episode Metatags" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "Radyo Saat Dilimi" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "Hafta Başlangıcı" -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' kullanici@site.com yapısına uymayan geçersiz bir adres" +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" +msgstr "Line In'den Kaydet?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' değeri '%format%' zaman formatına uymuyor" +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" +msgstr "Tekrar yayınla?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' değeri olması gereken '%min%' karakterden daha az" +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" +msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -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 "'%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 "Girdiğiniz şifreler örtüşmüyor." +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" +msgstr "Parolayı değiştir" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 msgid "Auto Switch Off:" @@ -3122,16 +4312,6 @@ msgstr "" msgid "Show Source Mount:" msgstr "" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "Giriş yap" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "Aşağıdaki resimde gördüğünüz karakterleri girin." - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3145,26 +4325,98 @@ msgstr "Yeni şifreyi onayla" msgid "Password confirmation does not match your password." msgstr "Onay şifresiyle şifreniz aynı değil." -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" -msgstr "Kullanıcı adı" - -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "Parolayı değiştir" - -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" msgstr "" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "gün" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "Etkin:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "Yayın Türü:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "Servis Türü:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "Kanallar:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "1 - Mono" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "2 - Stereo" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "Sunucu" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "Port" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "URL" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "Bağlama Noktası" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "Yönetici Hesabı" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "Yönetici Şifresi" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "Sunucu değeri boş bırakılamaz." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "Port değeri boş bırakılamaz." + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "Icecast sunucusunu Bağlama noktası değeri boş olarak kullanamazsınız." + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "Arayüz Zaman Dilimi" + #: airtime_mvc/application/forms/Player.php:14 msgid "Now Playing" msgstr "" @@ -3189,280 +4441,54 @@ msgstr "" msgid " - The player does not support Opus streams." msgstr "" -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - #: airtime_mvc/application/forms/Player.php:72 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -msgid "Preview:" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" -msgstr "Telefon:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" -msgstr "Radyo Web Sitesi:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" -msgstr "Ülke:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" -msgstr "Şehir:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" -msgstr "Radyo Tanımı:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" -msgstr "Radyomu %s'da tanıt" - -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "Bu kutuyu işaretleyerek %s'un %sgizlilik politikası%s'nı onaylıyorum" - -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "Gizlilik politikasını kabul etmeniz gerekmektedir." - -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' kullanici@site.com yapısına uymayan geçersiz bir adres" -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "Tüm Show'larım:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' değeri '%format%' zaman formatına uymuyor" -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' değeri olması gereken '%min%' karakterden daha az" -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr "Kriter seçiniz" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' değeri olması gereken '%max%' karakterden daha fazla" -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "Bit Oranı (Kbps)" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' değeri '%min%' ve '%max%' değerleri arasında değil" -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "Tanım" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "Örnekleme Oranı (kHz)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "saat" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "dakika" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "parça" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "Sabit" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "Dinamik" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "Çalma listesi içeriği oluştur ve kriterleri kaydet" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "Oluştur" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "Çalma listesi içeriğini karıştır" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "Karıştır" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "Sınırlama boş veya 0'dan küçük olamaz" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "Sınırlama 24 saati geçemez" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "Değer tamsayı olmalıdır" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "Ayarlayabileceğiniz azami parça sınırı 500'dür" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "Kriter ve Değişken seçin" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "Uzunluk '00:00:00' türünde olmalıdır" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "Değer saat biçiminde girilmelidir (eör. 0000-00-00 veya 0000-00-00 00:00:00)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:597 -msgid "The value has to be numeric" -msgstr "Değer rakam cinsinden girilmelidir" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "Değer 2147483648'den küçük olmalıdır" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "Değer %s karakter'den az olmalıdır" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "Değer boş bırakılamaz" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -msgid "Default License:" -msgstr "Varsayılan Lisans Türü:" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "Tüm Hakları Saklıdır" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -msgid "The work is in the public domain" -msgstr "Eser halka açık olarak kayıtlı" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -msgid "Creative Commons Attribution" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -msgid "Creative Commons Attribution Noncommercial" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -msgid "Creative Commons Attribution Share Alike" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" +msgstr "Girdiğiniz şifreler örtüşmüyor." #: airtime_mvc/application/forms/StreamSetting.php:26 msgid "Hardware Audio Output:" @@ -3540,379 +4566,636 @@ msgstr "" msgid "Custom / 3rd Party Streaming" msgstr "" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "Etkin:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "Yayın Türü:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "Bit Değeri:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "Servis Türü:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "Kanallar:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - Mono" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - Stereo" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "Sunucu" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "Port" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "URL" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "İsim" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "Bağlama Noktası" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "Yönetici Hesabı" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "Yönetici Şifresi" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "Sunucu değeri boş bırakılamaz." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "Port değeri boş bırakılamaz." - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "Icecast sunucusunu Bağlama noktası değeri boş olarak kullanamazsınız." - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -msgstr "" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 -msgid "Import Folder:" -msgstr "İçe Aktarım Klasörü" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 -msgid "Watched Folders:" -msgstr "İzlenen Klasörler:" - -#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 -msgid "Not a valid Directory" -msgstr "Geçerli bir Klasör değil." - -#: airtime_mvc/application/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "Oynat" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "Durdur" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -msgid "Set Cue In" -msgstr "Cue In değerini ayarla" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -msgid "Set Cue Out" -msgstr "Cue Out değerini ayarla" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "Cursor" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read on to find out more." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -" is easier than ever." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -" just a click away, you'll be on air and hands-free in no time." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/livestream.phtml:9 -#: airtime_mvc/application/views/scripts/dashboard/stream-player.phtml:2 -msgid "Live stream" -msgstr "Canlı yayın" - -#: airtime_mvc/application/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/DateHelper.php:213 #, php-format -msgid "%1$s copyright © %2$s All rights reserved.If this option is unchecked, the smartblock will schedule as many tracks as can be played out in their entirety within the specified duration. This will usually result in audio playback that is slightly less than the specified duration.
If this option is checked, the smartblock will also schedule one final track which will overflow the specified duration. This final track may be cut off mid-way if the show into which the smartblock is added finishes.
" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:476 +msgid "Playlist preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:478 +msgid "Webstream preview" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:479 +msgid "You don't have permission to view the library." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:480 +#: airtime_mvc/application/forms/AddShowWhen.php:24 +msgid "Now" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:481 +msgid "Click 'New' to create one now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:482 +msgid "Click 'Upload' to add some now." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:484 +msgid "Import Date" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:485 +msgid "Add New Podcast" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:486 +msgid "" +"Cannot schedule outside a show.\n" +"Try creating a show first." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:487 +msgid "No files have been uploaded yet." +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:493 +msgid "On Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:494 +msgid "Off Air" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:495 +msgid "Offline" +msgstr "" + +#: airtime_mvc/application/controllers/LocaleController.php:496 msgid "Nothing scheduled" msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:54 -msgid "Please enter your username and password." +#: airtime_mvc/application/controllers/LocaleController.php:497 +msgid "Click 'Add' to create one now." msgstr "" -#: airtime_mvc/application/controllers/LoginController.php:179 -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:183 -msgid "That username or email address could not be found." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:196 -msgid "There was a problem with the username or email address you entered." -msgstr "" - -#: airtime_mvc/application/controllers/LoginController.php:274 -msgid "Wrong username or password provided. Please try again." -msgstr "用户名或密码错误,请重试。" - -#: airtime_mvc/application/controllers/PlaylistController.php:53 -#, php-format -msgid "You are viewing an older version of %s" -msgstr "你所查看的%s已更改" - -#: airtime_mvc/application/controllers/PlaylistController.php:140 -msgid "You cannot add tracks to dynamic blocks." -msgstr "动态智能模块不能添加声音文件。" - -#: airtime_mvc/application/controllers/PlaylistController.php:161 -#, php-format -msgid "You don't have permission to delete selected %s(s)." -msgstr "你没有删除所选%s的权限。" - -#: airtime_mvc/application/controllers/PlaylistController.php:174 -msgid "You can only add tracks to smart block." -msgstr "智能模块只能添加媒体文件。" - -#: airtime_mvc/application/controllers/PlaylistController.php:192 -msgid "Untitled Playlist" -msgstr "未命名的播放列表" - -#: airtime_mvc/application/controllers/PlaylistController.php:194 -msgid "Untitled Smart Block" -msgstr "未命名的智能模块" - -#: airtime_mvc/application/controllers/PlaylistController.php:521 -msgid "Unknown Playlist" -msgstr "位置播放列表" - -#: airtime_mvc/application/controllers/PreferenceController.php:76 -msgid "Preferences updated." -msgstr "属性已更新。" - -#: airtime_mvc/application/controllers/PreferenceController.php:141 -msgid "Support setting updated." -msgstr "支持设定已更新。" - -#: airtime_mvc/application/controllers/PreferenceController.php:149 -msgid "Support Feedback" -msgstr "意见反馈" - -#: airtime_mvc/application/controllers/PreferenceController.php:351 -msgid "Stream Setting Updated." -msgstr "流设置已更新。" - -#: airtime_mvc/application/controllers/PreferenceController.php:399 -msgid "path should be specified" -msgstr "请指定路径" - -#: airtime_mvc/application/controllers/PreferenceController.php:494 -msgid "Problem with Liquidsoap..." -msgstr "Liquidsoap出错..." - -#: airtime_mvc/application/controllers/PreferenceController.php:556 -msgid "Request method not accepted" -msgstr "" - -#: airtime_mvc/application/controllers/ScheduleController.php:380 +#: airtime_mvc/application/controllers/ScheduleController.php:384 #, php-format msgid "Rebroadcast of show %s from %s at %s" msgstr "节目%s是节目%s的重播,时间是%s" -#: airtime_mvc/application/controllers/ShowbuilderController.php:137 -msgid "Select cursor" -msgstr "选择游标" +#: airtime_mvc/application/services/PodcastService.php:161 +msgid "Auto-generated smartblock for podcast" +msgstr "" -#: airtime_mvc/application/controllers/ShowbuilderController.php:138 -msgid "Remove cursor" -msgstr "删除游标" +#: airtime_mvc/application/services/CalendarService.php:50 +msgid "Record file doesn't exist" +msgstr "录制文件不存在" -#: airtime_mvc/application/controllers/ShowbuilderController.php:157 -msgid "show does not exist" -msgstr "节目不存在" +#: airtime_mvc/application/services/CalendarService.php:54 +msgid "View Recorded File Metadata" +msgstr "查看录制文件的元数据" -#: airtime_mvc/application/controllers/UserController.php:86 -msgid "User added successfully!" -msgstr "用户已添加成功!" +#: airtime_mvc/application/services/CalendarService.php:81 +msgid "Schedule Tracks" +msgstr "" -#: airtime_mvc/application/controllers/UserController.php:88 -msgid "User updated successfully!" -msgstr "用于已成功更新!" +#: airtime_mvc/application/services/CalendarService.php:106 +msgid "Clear Show" +msgstr "" -#: airtime_mvc/application/controllers/UserController.php:188 -msgid "Settings updated successfully!" -msgstr "设置更新成功!" +#: airtime_mvc/application/services/CalendarService.php:120 +#: airtime_mvc/application/services/CalendarService.php:125 +msgid "Cancel Show" +msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:28 -#: airtime_mvc/application/controllers/WebstreamController.php:32 -msgid "Untitled Webstream" -msgstr "未命名的网络流媒体" +#: airtime_mvc/application/services/CalendarService.php:146 +#: airtime_mvc/application/services/CalendarService.php:165 +msgid "Edit Instance" +msgstr "" -#: airtime_mvc/application/controllers/WebstreamController.php:154 -msgid "Webstream saved." -msgstr "网络流媒体已保存。" +#: airtime_mvc/application/services/CalendarService.php:158 +#: airtime_mvc/application/services/CalendarService.php:172 +msgid "Edit Show" +msgstr "编辑节目" -#: airtime_mvc/application/controllers/WebstreamController.php:162 -msgid "Invalid form values." -msgstr "无效的表格内容。" +#: airtime_mvc/application/services/CalendarService.php:194 +msgid "Delete Instance" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:26 -#: 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:92 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 -#: airtime_mvc/application/forms/ShowBuilder.php:37 -#: airtime_mvc/application/forms/ShowBuilder.php:65 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 -msgid "Invalid character entered" -msgstr "输入的字符不合要求" +#: airtime_mvc/application/services/CalendarService.php:200 +msgid "Delete Instance and All Following" +msgstr "" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:66 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:71 -msgid "Day must be specified" -msgstr "请指定天" +#: airtime_mvc/application/services/CalendarService.php:254 +msgid "Permission denied" +msgstr "没有编辑权限" -#: airtime_mvc/application/forms/AddShowAbsoluteRebroadcastDates.php:71 -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:76 -msgid "Time must be specified" -msgstr "请指定时间" +#: airtime_mvc/application/services/CalendarService.php:258 +msgid "Can't drag and drop repeating shows" +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/services/CalendarService.php:267 +msgid "Can't move a past show" +msgstr "已经结束的节目无法更改时间" + +#: airtime_mvc/application/services/CalendarService.php:302 +msgid "Can't move show into past" +msgstr "节目不能设置到已过去的时间点" + +#: airtime_mvc/application/services/CalendarService.php:309 +#: airtime_mvc/application/forms/AddShowWhen.php:293 +#: airtime_mvc/application/forms/AddShowWhen.php:321 +#: airtime_mvc/application/forms/AddShowWhen.php:327 +msgid "Cannot schedule overlapping shows" +msgstr "节目时间设置与其他节目有冲突" + +#: airtime_mvc/application/services/CalendarService.php:322 +msgid "Can't move a recorded show less than 1 hour before its rebroadcasts." +msgstr "录音和重播节目之间的间隔必须大于等于1小时。" + +#: airtime_mvc/application/services/CalendarService.php:332 +msgid "Show was deleted because recorded show does not exist!" +msgstr "录音节目不存在,节目已删除!" + +#: airtime_mvc/application/services/CalendarService.php:339 +msgid "Must wait 1 hour to rebroadcast." +msgstr "重播节目必须设置于1小时之后。" + +#: airtime_mvc/application/services/HistoryService.php:1126 +msgid "Track" +msgstr "曲目" + +#: airtime_mvc/application/services/HistoryService.php:1129 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:74 +#: airtime_mvc/application/models/Block.php:1455 +#: airtime_mvc/application/models/Block.php:1555 +msgid "Track Type" +msgstr "" + +#: airtime_mvc/application/services/HistoryService.php:1154 +#: airtime_mvc/application/forms/EditHistoryItem.php:32 +msgid "Start Time" +msgstr "开始时间" + +#: airtime_mvc/application/services/HistoryService.php:1155 +#: airtime_mvc/application/forms/EditHistoryItem.php:44 +msgid "End Time" +msgstr "结束时间" + +#: airtime_mvc/application/services/HistoryService.php:1175 +msgid "Played" +msgstr "已播放" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 msgid "Add Autoloading Playlist ?" msgstr "" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "" - #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" -#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "" +#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:55 +#: airtime_mvc/application/models/Block.php:1435 +#: airtime_mvc/application/models/Block.php:1535 +msgid "Select criteria" +msgstr "选择属性" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:57 +#: airtime_mvc/application/models/Block.php:1437 +#: airtime_mvc/application/models/Block.php:1537 +msgid "Bit Rate (Kbps)" +msgstr "比特率(Kbps)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:79 +#: airtime_mvc/application/models/Block.php:1460 +#: airtime_mvc/application/models/Block.php:1560 +msgid "Sample Rate (kHz)" +msgstr "样本率(KHz)" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:129 +#: airtime_mvc/application/models/Block.php:1476 +#: airtime_mvc/application/models/Block.php:1576 +msgid "before" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:130 +#: airtime_mvc/application/models/Block.php:1477 +#: airtime_mvc/application/models/Block.php:1577 +msgid "after" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:131 +#: airtime_mvc/application/models/Block.php:1478 +#: airtime_mvc/application/models/Block.php:1578 +msgid "between" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:147 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:465 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:507 +msgid "Select unit of time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:148 +msgid "minute(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:149 +msgid "hour(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:150 +msgid "day(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:151 +msgid "week(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:152 +msgid "month(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:153 +msgid "year(s)" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:164 +msgid "hours" +msgstr "小时" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:165 +msgid "minutes" +msgstr "分钟" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:166 +#: airtime_mvc/application/models/Block.php:334 +msgid "items" +msgstr "个数" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:167 +msgid "time remaining in show" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:176 +msgid "Randomly" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:177 +msgid "Newest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:178 +msgid "Oldest" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:179 +msgid "Most recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:180 +msgid "Least recently played" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:202 +msgid "Select Track Type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:263 +msgid "Type:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:266 +msgid "Dynamic" +msgstr "动态" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:267 +msgid "Static" +msgstr "静态" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:432 +msgid "Select track type" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:517 +msgid "Allow Repeated Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:525 +msgid "Allow last track to exceed time limit:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 +msgid "Sort Tracks:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:552 +msgid "Limit to:" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 +msgid "Generate playlist content and save criteria" +msgstr "保存条件设置并生成播放列表内容" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:578 +msgid "Shuffle playlist content" +msgstr "随机打乱歌曲次序" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:813 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:825 +msgid "Limit cannot be empty or smaller than 0" +msgstr "限制的设置不能比0小" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:818 +msgid "Limit cannot be more than 24 hrs" +msgstr "限制的设置不能大于24小时" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:828 +msgid "The value should be an integer" +msgstr "值只能为整数" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:831 +msgid "500 is the max item limit value you can set" +msgstr "最多只能允许500条内容" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:842 +msgid "You must select Criteria and Modifier" +msgstr "条件和操作符不能为空" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:849 +msgid "'Length' should be in '00:00:00' format" +msgstr "‘长度’格式应该为‘00:00:00’" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:857 +msgid "Only non-negative integer numbers are allowed (e.g 1 or 5) for the text value" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:863 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:888 +msgid "You must select a time unit for a relative datetime." +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:868 +#: airtime_mvc/application/forms/SmartBlockCriteria.php:894 +msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" +msgstr "时间格式错误,应该为形如0000-00-00 或 0000-00-00 00:00:00的格式" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:883 +msgid "Only non-negative integer numbers are allowed for a relative date time" +msgstr "" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:909 +msgid "The value has to be numeric" +msgstr "应该为数字" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:914 +msgid "The value should be less then 2147483648" +msgstr "不能大于2147483648" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:919 #, php-format -msgid "Use %s Authentication:" +msgid "The value should be less than %s characters" +msgstr "不能小于%s个字符" + +#: airtime_mvc/application/forms/SmartBlockCriteria.php:926 +msgid "Value cannot be empty" +msgstr "不能为空" + +#: airtime_mvc/application/forms/EditAudioMD.php:90 +msgid "Owner:" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:17 -msgid "Use Custom Authentication:" -msgstr "使用自定义的用户认证:" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:26 -msgid "Custom Username" -msgstr "自定义用户名" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:38 -msgid "Custom Password" -msgstr "自定义密码" - -#: airtime_mvc/application/forms/AddShowLiveStream.php:49 -msgid "Host:" +#: airtime_mvc/application/forms/EditAudioMD.php:102 +msgid "Select a Type" msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:55 -msgid "Port:" +#: airtime_mvc/application/forms/EditAudioMD.php:217 +msgid "ISRC Number:" +msgstr "ISRC编号:" + +#: airtime_mvc/application/forms/EditAudioMD.php:288 +msgid "Publish..." msgstr "" -#: airtime_mvc/application/forms/AddShowLiveStream.php:61 -msgid "Mount:" -msgstr "" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:14 +msgid "Import Folder:" +msgstr "导入文件夹:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:78 -msgid "Username field cannot be empty." -msgstr "请填写用户名" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:25 +msgid "Watched Folders:" +msgstr "监控文件夹:" -#: airtime_mvc/application/forms/AddShowLiveStream.php:83 -msgid "Password field cannot be empty." -msgstr "请填写密码" - -#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 -#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:6 -msgid "days" -msgstr "天" +#: airtime_mvc/application/forms/WatchedDirPreferences.php:40 +msgid "Not a valid Directory" +msgstr "无效的路径" #: airtime_mvc/application/forms/AddShowRepeats.php:10 msgid "Link:" @@ -2635,8 +3879,9 @@ msgid "day of the week" msgstr "一个星期的同一日子" #: airtime_mvc/application/forms/AddShowRepeats.php:56 -#: airtime_mvc/application/forms/DateRange.php:44 +#: airtime_mvc/application/forms/ShowListenerStat.php:44 #: airtime_mvc/application/forms/ShowBuilder.php:46 +#: airtime_mvc/application/forms/DateRange.php:44 msgid "Date End:" msgstr "结束日期:" @@ -2652,78 +3897,10 @@ msgstr "结束日期应晚于开始日期" msgid "Please select a repeat day" 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/AddShowStyle.php:12 -msgid "Background Colour:" -msgstr "背景色:" - -#: airtime_mvc/application/forms/AddShowStyle.php:31 -msgid "Text Colour:" -msgstr "文字颜色:" - -#: airtime_mvc/application/forms/AddShowStyle.php:49 -msgid "Current Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:64 -#: airtime_mvc/application/forms/GeneralPreferences.php:55 -#: 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/forms/AddShowStyle.php:72 -msgid "Show Logo:" -msgstr "" - -#: airtime_mvc/application/forms/AddShowStyle.php:87 -msgid "Logo Preview:" -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 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:20 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:20 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:17 -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:45 -#: airtime_mvc/application/forms/EditAudioMD.php:72 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:17 -msgid "Genre:" -msgstr "风格:" - -#: airtime_mvc/application/forms/AddShowWhat.php:54 -#: airtime_mvc/application/forms/EditAudioMD.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 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:17 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:25 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:28 -msgid "Description:" -msgstr "描述:" - -#: airtime_mvc/application/forms/AddShowWhat.php:69 -msgid "Instance Description:" -msgstr "" +#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 +msgid "Value is required and can't be empty" +msgstr "不能为空" #: airtime_mvc/application/forms/AddShowWhen.php:16 msgid "'%value%' does not fit the time format 'HH:mm'" @@ -2733,6 +3910,7 @@ msgstr "'%value%' 不符合形如 '小时:分'的格式要求,例如,‘01 msgid "Start Time:" msgstr "" +#: airtime_mvc/application/forms/AddShowWhen.php:25 #: airtime_mvc/application/forms/AddShowWhen.php:37 msgid "In the Future:" msgstr "" @@ -2741,12 +3919,6 @@ msgstr "" msgid "End Time:" msgstr "" -#: airtime_mvc/application/forms/AddShowWhen.php:89 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:37 -#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:43 -msgid "Duration:" -msgstr "时长:" - #: airtime_mvc/application/forms/AddShowWhen.php:98 msgid "Timezone:" msgstr "时区" @@ -2764,7 +3936,7 @@ msgid "Cannot modify start date/time of the show that is already started" msgstr "节目已经启动,无法修改开始时间/日期" #: airtime_mvc/application/forms/AddShowWhen.php:156 -#: airtime_mvc/application/models/Show.php:308 +#: airtime_mvc/application/models/Show.php:320 msgid "End date/time cannot be in the past" msgstr "节目结束的时间或日期不能设置为过去的时间" @@ -2780,32 +3952,17 @@ msgstr "节目时长不能为0" msgid "Cannot have duration greater than 24h" msgstr "节目时长不能超过24小时" -#: airtime_mvc/application/forms/AddShowWhen.php:293 -#: airtime_mvc/application/forms/AddShowWhen.php:321 -#: airtime_mvc/application/forms/AddShowWhen.php:327 -#: airtime_mvc/application/services/CalendarService.php:309 -msgid "Cannot schedule overlapping shows" -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/AddUser.php:28 -#: airtime_mvc/application/forms/EditUser.php:36 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 #: airtime_mvc/application/forms/Login.php:39 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:42 +#: airtime_mvc/application/forms/EditUser.php:36 msgid "Username:" msgstr "用户名:" #: airtime_mvc/application/forms/AddUser.php:37 -#: airtime_mvc/application/forms/EditUser.php:47 -#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 #: airtime_mvc/application/forms/Login.php:52 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:58 +#: airtime_mvc/application/forms/EditUser.php:47 msgid "Password:" msgstr "密码:" @@ -2826,8 +3983,6 @@ msgstr "姓:" #: airtime_mvc/application/forms/AddUser.php:66 #: airtime_mvc/application/forms/EditUser.php:82 -#: airtime_mvc/application/forms/RegisterAirtime.php:51 -#: airtime_mvc/application/forms/SupportSettings.php:43 msgid "Email:" msgstr "电邮:" @@ -2851,112 +4006,159 @@ msgid "User Type:" msgstr "用户类型:" #: airtime_mvc/application/forms/AddUser.php:119 -#: airtime_mvc/application/forms/EditUser.php:154 +#: airtime_mvc/application/forms/EditUser.php:142 msgid "Login name is not unique." msgstr "帐号重名。" -#: airtime_mvc/application/forms/customvalidators/ConditionalNotEmpty.php:32 -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:8 -msgid "Value is required and can't be empty" -msgstr "不能为空" - -#: airtime_mvc/application/forms/DangerousPreferences.php:12 -msgid "Delete All Tracks in Library" +#: airtime_mvc/application/forms/AddShowLiveStream.php:11 +#, php-format +msgid "Use %s Authentication:" msgstr "" -#: airtime_mvc/application/forms/DateRange.php:16 +#: airtime_mvc/application/forms/AddShowLiveStream.php:17 +msgid "Use Custom Authentication:" +msgstr "使用自定义的用户认证:" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:26 +msgid "Custom Username" +msgstr "自定义用户名" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:38 +msgid "Custom Password" +msgstr "自定义密码" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:49 +msgid "Host:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:55 +msgid "Port:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:61 +msgid "Mount:" +msgstr "" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:78 +msgid "Username field cannot be empty." +msgstr "请填写用户名" + +#: airtime_mvc/application/forms/AddShowLiveStream.php:83 +msgid "Password field cannot be empty." +msgstr "请填写密码" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 +msgid "Station Language" +msgstr "" + +#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 +#: airtime_mvc/application/forms/GeneralPreferences.php:187 +msgid "Station Timezone" +msgstr "系统使用的时区" + +#: airtime_mvc/application/forms/PodcastPreferences.php:8 +msgid "Feed Privacy" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:10 +msgid "Public" +msgstr "" + +#: airtime_mvc/application/forms/PodcastPreferences.php:11 +msgid "Private" +msgstr "" + +#: airtime_mvc/application/forms/ShowListenerStat.php:16 #: airtime_mvc/application/forms/ShowBuilder.php:18 +#: airtime_mvc/application/forms/DateRange.php:16 msgid "Date Start:" msgstr "开始日期:" -#: airtime_mvc/application/forms/EditAudioMD.php:24 -#: airtime_mvc/application/forms/Player.php:15 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:9 -#: airtime_mvc/application/views/scripts/library/publish-dialog.phtml:11 -msgid "Title:" -msgstr "歌曲名:" +#: airtime_mvc/application/forms/ShowListenerStat.php:35 +#: airtime_mvc/application/forms/ShowListenerStat.php:63 +#: airtime_mvc/application/forms/ShowBuilder.php:37 +#: airtime_mvc/application/forms/ShowBuilder.php:65 +#: 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/LiveStreamingPreferences.php:92 +#: airtime_mvc/application/forms/LiveStreamingPreferences.php:119 +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:31 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:102 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:121 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:136 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:158 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:168 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:177 +#: airtime_mvc/application/forms/StreamSettingSubForm.php:186 +msgid "Invalid character entered" +msgstr "输入的字符不合要求" -#: airtime_mvc/application/forms/EditAudioMD.php:34 -#: 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/views/scripts/library/publish-dialog.phtml:14 -msgid "Creator:" -msgstr "作者:" +#: airtime_mvc/application/forms/AddShowWho.php:10 +msgid "Search Users:" +msgstr "查找用户:" -#: airtime_mvc/application/forms/EditAudioMD.php:44 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:11 -msgid "Album:" -msgstr "专辑名:" +#: airtime_mvc/application/forms/AddShowWho.php:24 +msgid "DJs:" +msgstr "选择节目编辑:" -#: airtime_mvc/application/forms/EditAudioMD.php:82 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:18 -msgid "Year:" -msgstr "年份:" +#: airtime_mvc/application/forms/ShowBuilder.php:72 +#: airtime_mvc/application/forms/ShowBuilder.php:89 +msgid "Filter by Show" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:95 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:19 -msgid "Label:" -msgstr "标签:" +#: airtime_mvc/application/forms/ShowBuilder.php:80 +msgid "All My Shows:" +msgstr "我的全部节目:" -#: airtime_mvc/application/forms/EditAudioMD.php:105 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:21 -msgid "Composer:" -msgstr "编曲:" +#: airtime_mvc/application/forms/ShowBuilder.php:91 +msgid "My Shows" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:115 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:22 -msgid "Conductor:" -msgstr "制作:" +#: airtime_mvc/application/forms/AddShowStyle.php:12 +msgid "Background Colour:" +msgstr "背景色:" -#: airtime_mvc/application/forms/EditAudioMD.php:125 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:16 -msgid "Mood:" -msgstr "情怀:" +#: airtime_mvc/application/forms/AddShowStyle.php:31 +msgid "Text Colour:" +msgstr "文字颜色:" -#: airtime_mvc/application/forms/EditAudioMD.php:135 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:20 -msgid "BPM:" -msgstr "拍子(BPM):" +#: airtime_mvc/application/forms/AddShowStyle.php:49 +msgid "Current Logo:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:145 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:23 -msgid "Copyright:" -msgstr "版权:" +#: airtime_mvc/application/forms/AddShowStyle.php:72 +msgid "Show Logo:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:155 -msgid "ISRC Number:" -msgstr "ISRC编号:" +#: airtime_mvc/application/forms/AddShowStyle.php:87 +msgid "Logo Preview:" +msgstr "" -#: airtime_mvc/application/forms/EditAudioMD.php:165 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:25 -msgid "Website:" -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/EditAudioMD.php:175 -#: airtime_mvc/application/forms/EditUser.php:118 -#: airtime_mvc/application/forms/Login.php:66 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:26 -msgid "Language:" -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/EditHistoryItem.php:32 -#: airtime_mvc/application/services/HistoryService.php:1153 -msgid "Start Time" -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/EditHistoryItem.php:44 -#: airtime_mvc/application/services/HistoryService.php:1154 -msgid "End Time" -msgstr "结束时间" +#: airtime_mvc/application/forms/AddShowWhat.php:30 +msgid "Untitled Show" +msgstr "未命名节目" -#: airtime_mvc/application/forms/EditUser.php:128 -msgid "Interface Timezone:" -msgstr "用户界面使用的时区:" +#: airtime_mvc/application/forms/AddShowWhat.php:69 +msgid "Instance Description:" +msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:27 -#: airtime_mvc/application/forms/RegisterAirtime.php:30 -#: airtime_mvc/application/forms/SupportSettings.php:18 msgid "Station Name" msgstr "电台名称" @@ -2965,12 +4167,10 @@ msgid "Station Description" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:44 -#: airtime_mvc/application/forms/RegisterAirtime.php:106 msgid "Station Logo:" msgstr "电台标志:" #: airtime_mvc/application/forms/GeneralPreferences.php:45 -#: airtime_mvc/application/views/scripts/form/register-dialog.phtml:152 msgid "Note: Anything larger than 600x600 will be resized." msgstr "注意:大于600x600的图片将会被缩放" @@ -2993,94 +4193,83 @@ msgstr "默认淡入效果(秒):" msgid "Default Fade Out (s):" msgstr "默认淡出效果(秒):" -#: airtime_mvc/application/forms/GeneralPreferences.php:105 -msgid "Overwrite Podcast Episode Metatags" +#: airtime_mvc/application/forms/GeneralPreferences.php:104 +msgid "Track Type Upload Default" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:120 -msgid "Generate a smartblock and a playlist upon creation of a new podcast" -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." -msgstr "" - -#: airtime_mvc/application/forms/GeneralPreferences.php:107 -#: airtime_mvc/application/forms/GeneralPreferences.php:125 -msgid "Disabled" -msgstr "禁用" - -#: airtime_mvc/application/forms/GeneralPreferences.php:108 -#: airtime_mvc/application/forms/GeneralPreferences.php:126 -msgid "Enabled" -msgstr "启用" - #: airtime_mvc/application/forms/GeneralPreferences.php:111 -msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgid "Intro Autoloading Playlist" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public LibreTime API" +#: airtime_mvc/application/forms/GeneralPreferences.php:117 +msgid "Outro Autoloading Playlist" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 -msgid "Required for embeddable schedule widget." +msgid "Overwrite Podcast Episode Metatags" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 +msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:138 +msgid "Generate a smartblock and a playlist upon creation of a new podcast" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:144 +msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:155 +msgid "Public LibreTime API" +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:156 +msgid "Required for embeddable schedule widget." +msgstr "" + +#: airtime_mvc/application/forms/GeneralPreferences.php:162 msgid "" "Enabling this feature will allow LibreTime to provide schedule data\n" " to external widgets that can be embedded in your website." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:141 +#: airtime_mvc/application/forms/GeneralPreferences.php:174 msgid "Allowed CORS URLs" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:142 +#: airtime_mvc/application/forms/GeneralPreferences.php:175 msgid "Remote URLs that are allowed to access this LibreTime instance in a browser. One URL per line." msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:147 +#: airtime_mvc/application/forms/GeneralPreferences.php:180 msgid "Default Language" msgstr "" -#: airtime_mvc/application/forms/GeneralPreferences.php:154 -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:23 -msgid "Station Timezone" -msgstr "系统使用的时区" - -#: airtime_mvc/application/forms/GeneralPreferences.php:161 +#: airtime_mvc/application/forms/GeneralPreferences.php:194 msgid "Week Starts On" msgstr "一周开始于" -#: airtime_mvc/application/forms/GeneralPreferences.php:177 +#: airtime_mvc/application/forms/GeneralPreferences.php:210 msgid "Display login button on your Radio Page?" msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 -msgid "'%value%' is no valid email address in the basic format local-part@hostname" -msgstr "'%value%' 不是合法的电邮地址,应该类似于 local-part@hostname" +#: airtime_mvc/application/forms/AddShowRR.php:10 +msgid "Record from Line In?" +msgstr "从线路输入录制?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 -msgid "'%value%' does not fit the date format '%format%'" -msgstr "'%value%' 不符合格式要求: '%format%'" +#: airtime_mvc/application/forms/AddShowRR.php:16 +msgid "Rebroadcast?" +msgstr "重播?" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 -msgid "'%value%' is less than %min% characters long" -msgstr "'%value%' 小于最小长度要求 %min% " +#: airtime_mvc/application/forms/PasswordRestore.php:14 +msgid "Email" +msgstr "" -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 -msgid "'%value%' is more than %max% characters long" -msgstr "'%value%' 大于最大长度要求 %max%" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 -msgid "'%value%' is not between '%min%' and '%max%', inclusively" -msgstr "'%value%' 应该介于 '%min%' 和 '%max%'之间" - -#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 -msgid "Passwords do not match" -msgstr "两次密码输入不匹配" +#: airtime_mvc/application/forms/PasswordRestore.php:36 +msgid "Reset password" +msgstr "重置密码" #: airtime_mvc/application/forms/LiveStreamingPreferences.php:19 msgid "Auto Switch Off:" @@ -3124,16 +4313,6 @@ msgstr "" msgid "Show Source Mount:" msgstr "" -#: airtime_mvc/application/forms/Login.php:81 -#: airtime_mvc/application/views/scripts/index/index.phtml:30 -#: airtime_mvc/application/views/scripts/login/index.phtml:3 -msgid "Login" -msgstr "登录" - -#: airtime_mvc/application/forms/Login.php:100 -msgid "Type the characters you see in the picture below." -msgstr "请输入图像里的字符。" - #: airtime_mvc/application/forms/PasswordChange.php:17 #: airtime_mvc/application/forms/StreamSettingSubForm.php:117 msgid "Password" @@ -3147,26 +4326,98 @@ msgstr "确认新密码" msgid "Password confirmation does not match your password." msgstr "新密码不匹配" -#: airtime_mvc/application/forms/PasswordRestore.php:14 -msgid "Email" +#: airtime_mvc/application/forms/DangerousPreferences.php:12 +msgid "Delete All Tracks in Library" msgstr "" -#: airtime_mvc/application/forms/PasswordRestore.php:25 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:164 -#: airtime_mvc/application/views/scripts/user/add-user.phtml:18 -msgid "Username" -msgstr "用户名" - -#: airtime_mvc/application/forms/PasswordRestore.php:36 -msgid "Reset password" -msgstr "重置密码" - -#: airtime_mvc/application/forms/PasswordRestore.php:46 -#: airtime_mvc/application/views/scripts/form/password-restore.phtml:52 -#: airtime_mvc/application/views/scripts/login/password-restore-after.phtml:11 -msgid "Back" +#: airtime_mvc/application/forms/AddTracktype.php:21 +msgid "Type Name:" msgstr "" +#: airtime_mvc/application/forms/AddTracktype.php:27 +msgid "Code:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:46 +msgid "Visibility:" +msgstr "" + +#: airtime_mvc/application/forms/AddTracktype.php:70 +msgid "Code is not unique." +msgstr "" + +#: airtime_mvc/application/forms/AddShowRebroadcastDates.php:15 +msgid "days" +msgstr "天" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 +msgid "Enabled:" +msgstr "启用:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 +msgid "Mobile:" +msgstr "" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 +msgid "Stream Type:" +msgstr "流格式:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 +msgid "Service Type:" +msgstr "服务类型:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 +msgid "Channels:" +msgstr "声道:" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "1 - Mono" +msgstr "1 - 单声道" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 +msgid "2 - Stereo" +msgstr "2 - 立体声" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 +msgid "Server" +msgstr "服务器" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 +msgid "Port" +msgstr "端口号" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 +msgid "URL" +msgstr "链接地址" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 +msgid "Mount Point" +msgstr "加载点" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 +msgid "Admin User" +msgstr "管理员用户名" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 +msgid "Admin Password" +msgstr "管理员密码" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 +msgid "Server cannot be empty." +msgstr "请填写“服务器”。" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 +msgid "Port cannot be empty." +msgstr "请填写“端口”。" + +#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 +msgid "Mount cannot be empty with Icecast server." +msgstr "请填写“加载点”。" + +#: airtime_mvc/application/forms/EditUser.php:128 +msgid "Interface Timezone:" +msgstr "用户界面使用的时区:" + #: airtime_mvc/application/forms/Player.php:14 msgid "Now Playing" msgstr "直播室" @@ -3191,280 +4442,54 @@ msgstr "" msgid " - The player does not support Opus streams." msgstr "" -#: airtime_mvc/application/forms/Player.php:71 -msgid "Embeddable code:" -msgstr "" - #: airtime_mvc/application/forms/Player.php:72 msgid "Copy this code and paste it into your website's HTML to embed the player in your site." msgstr "" -#: airtime_mvc/application/forms/Player.php:77 -#: airtime_mvc/application/views/scripts/embeddablewidgets/schedule.phtml:14 -msgid "Preview:" +#: airtime_mvc/application/forms/TuneInPreferences.php:20 +msgid "Push metadata to your station on TuneIn?" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:8 -msgid "Feed Privacy" +#: airtime_mvc/application/forms/TuneInPreferences.php:25 +msgid "Station ID:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:10 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:35 -msgid "Public" +#: airtime_mvc/application/forms/TuneInPreferences.php:31 +msgid "Partner Key:" msgstr "" -#: airtime_mvc/application/forms/PodcastPreferences.php:11 -#: airtime_mvc/application/forms/SoundCloudPreferences.php:36 -msgid "Private" +#: airtime_mvc/application/forms/TuneInPreferences.php:37 +msgid "Partner Id:" msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:39 -#: airtime_mvc/application/forms/SupportSettings.php:31 -msgid "Phone:" -msgstr "电话:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:62 -#: airtime_mvc/application/forms/SupportSettings.php:54 -msgid "Station Web Site:" -msgstr "电台网址:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:73 -#: airtime_mvc/application/forms/SupportSettings.php:65 -msgid "Country:" -msgstr "国家:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:84 -#: airtime_mvc/application/forms/SupportSettings.php:76 -msgid "City:" -msgstr "城市:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:96 -#: airtime_mvc/application/forms/SupportSettings.php:88 -msgid "Station Description:" -msgstr "电台描述:" - -#: airtime_mvc/application/forms/RegisterAirtime.php:126 -#: airtime_mvc/application/forms/SupportSettings.php:108 -#, php-format -msgid "Promote my station on %s" +#: airtime_mvc/application/forms/TuneInPreferences.php:78 +#: airtime_mvc/application/forms/TuneInPreferences.php:87 +msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." msgstr "" -#: airtime_mvc/application/forms/RegisterAirtime.php:151 -#: airtime_mvc/application/forms/SupportSettings.php:120 -#, php-format -msgid "By checking this box, I agree to %s's %sprivacy policy%s." -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:19 +msgid "'%value%' is no valid email address in the basic format local-part@hostname" +msgstr "'%value%' 不是合法的电邮地址,应该类似于 local-part@hostname" -#: airtime_mvc/application/forms/RegisterAirtime.php:169 -#: airtime_mvc/application/forms/SupportSettings.php:143 -msgid "You have to agree to privacy policy." -msgstr "请先接受隐私策略" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:33 +msgid "'%value%' does not fit the date format '%format%'" +msgstr "'%value%' 不符合格式要求: '%format%'" -#: airtime_mvc/application/forms/SetupLanguageTimezone.php:18 -msgid "Station Language" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:59 +msgid "'%value%' is less than %min% characters long" +msgstr "'%value%' 小于最小长度要求 %min% " -#: airtime_mvc/application/forms/ShowBuilder.php:72 -#: airtime_mvc/application/forms/ShowBuilder.php:89 -msgid "Filter by Show" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:64 +msgid "'%value%' is more than %max% characters long" +msgstr "'%value%' 大于最大长度要求 %max%" -#: airtime_mvc/application/forms/ShowBuilder.php:80 -msgid "All My Shows:" -msgstr "我的全部节目:" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:76 +msgid "'%value%' is not between '%min%' and '%max%', inclusively" +msgstr "'%value%' 应该介于 '%min%' 和 '%max%'之间" -#: airtime_mvc/application/forms/ShowBuilder.php:91 -msgid "My Shows" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:50 -#: airtime_mvc/application/models/Block.php:1356 -msgid "Select criteria" -msgstr "选择属性" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:52 -#: airtime_mvc/application/models/Block.php:1358 -msgid "Bit Rate (Kbps)" -msgstr "比特率(Kbps)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:59 -#: airtime_mvc/application/forms/StreamSettingSubForm.php:148 -#: airtime_mvc/application/models/Block.php:1365 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:29 -#: airtime_mvc/application/views/scripts/systemstatus/index.phtml:30 -#: airtime_mvc/application/views/scripts/webstream/webstream.phtml:24 -msgid "Description" -msgstr "描述" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:73 -#: airtime_mvc/application/models/Block.php:1380 -msgid "Sample Rate (kHz)" -msgstr "样本率(KHz)" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:121 -msgid "hours" -msgstr "小时" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:122 -msgid "minutes" -msgstr "分钟" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:123 -#: airtime_mvc/application/models/Block.php:330 -msgid "items" -msgstr "个数" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:132 -msgid "Randomly" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:133 -msgid "Newest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:134 -msgid "Oldest" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:181 -msgid "Type:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:184 -msgid "Static" -msgstr "静态" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:185 -msgid "Dynamic" -msgstr "动态" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:299 -msgid "Allow Repeated Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:453 -msgid "Allow last track to exceed time limit:" -msgstr "" - -#: airtime_mvc/application/views/scripts/playlist/update.phtml:25 -msgid "This is only a preview of possible content generated by the smart block based upon the above criteria." -msgstr "" - -#: airtime_mvc/application/views/scripts/form/smart-block-criteria.phtml:82 -msgid "Advanced options" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:308 -msgid "Sort Tracks:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:326 -msgid "Limit to:" -msgstr "" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:348 -msgid "Generate playlist content and save criteria" -msgstr "保存条件设置并生成播放列表内容" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:350 -msgid "Generate" -msgstr "开始生成" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:356 -msgid "Shuffle playlist content" -msgstr "随机打乱歌曲次序" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:358 -#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:44 -msgid "Shuffle" -msgstr "随机" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:529 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:541 -msgid "Limit cannot be empty or smaller than 0" -msgstr "限制的设置不能比0小" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:534 -msgid "Limit cannot be more than 24 hrs" -msgstr "限制的设置不能大于24小时" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:544 -msgid "The value should be an integer" -msgstr "值只能为整数" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:547 -msgid "500 is the max item limit value you can set" -msgstr "最多只能允许500条内容" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:558 -msgid "You must select Criteria and Modifier" -msgstr "条件和操作符不能为空" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:565 -msgid "'Length' should be in '00:00:00' format" -msgstr "‘长度’格式应该为‘00:00:00’" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:570 -#: airtime_mvc/application/forms/SmartBlockCriteria.php:583 -msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)" -msgstr "时间格式错误,应该为形如0000-00-00 或 0000-00-00 00:00:00的格式" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:597 -msgid "The value has to be numeric" -msgstr "应该为数字" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:602 -msgid "The value should be less then 2147483648" -msgstr "不能大于2147483648" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:607 -#, php-format -msgid "The value should be less than %s characters" -msgstr "不能小于%s个字符" - -#: airtime_mvc/application/forms/SmartBlockCriteria.php:614 -msgid "Value cannot be empty" -msgstr "不能为空" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:15 -msgid "Default License:" -msgstr "默认版权策略:" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:18 -msgid "All rights are reserved" -msgstr "版权所有" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:19 -msgid "The work is in the public domain" -msgstr "公开" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:20 -msgid "Creative Commons Attribution" -msgstr "知识共享署名" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:21 -msgid "Creative Commons Attribution Noncommercial" -msgstr "知识共享署名-非商业应用" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:22 -msgid "Creative Commons Attribution No Derivative Works" -msgstr "知识共享署名-不允许衍生" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:23 -msgid "Creative Commons Attribution Share Alike" -msgstr "知识共享署名-相同方式共享" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:24 -msgid "Creative Commons Attribution Noncommercial Non Derivate Works" -msgstr "知识共享署名-非商业应用且不允许衍生" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:25 -msgid "Creative Commons Attribution Noncommercial Share Alike" -msgstr "知识共享署名-非商业应用且相同方式共享" - -#: airtime_mvc/application/forms/SoundCloudPreferences.php:32 -msgid "Default Sharing Type:" -msgstr "" +#: airtime_mvc/application/forms/helpers/ValidationTypes.php:89 +msgid "Passwords do not match" +msgstr "两次密码输入不匹配" #: airtime_mvc/application/forms/StreamSetting.php:26 msgid "Hardware Audio Output:" @@ -3542,381 +4567,636 @@ msgstr "" msgid "Custom / 3rd Party Streaming" msgstr "" -#: airtime_mvc/application/forms/StreamSettingSubForm.php:52 -msgid "Enabled:" -msgstr "启用:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:59 -msgid "Mobile:" -msgstr "" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:66 -msgid "Stream Type:" -msgstr "流格式:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:74 -#: airtime_mvc/application/views/scripts/library/get-file-metadata.ajax.phtml:15 -msgid "Bit Rate:" -msgstr "比特率:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:82 -msgid "Service Type:" -msgstr "服务类型:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:90 -msgid "Channels:" -msgstr "声道:" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "1 - Mono" -msgstr "1 - 单声道" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:91 -msgid "2 - Stereo" -msgstr "2 - 立体声" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:98 -msgid "Server" -msgstr "服务器" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:108 -msgid "Port" -msgstr "端口号" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:133 -msgid "URL" -msgstr "链接地址" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:142 -#: airtime_mvc/application/views/scripts/playouthistorytemplate/template-contents.phtml:9 -#: airtime_mvc/application/views/scripts/podcast/station.phtml:23 -msgid "Name" -msgstr "名字" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:154 -msgid "Mount Point" -msgstr "加载点" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:174 -msgid "Admin User" -msgstr "管理员用户名" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:183 -msgid "Admin Password" -msgstr "管理员密码" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:211 -msgid "Server cannot be empty." -msgstr "请填写“服务器”。" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:216 -msgid "Port cannot be empty." -msgstr "请填写“端口”。" - -#: airtime_mvc/application/forms/StreamSettingSubForm.php:222 -msgid "Mount cannot be empty with Icecast server." -msgstr "请填写“加载点”。" - -#: airtime_mvc/application/forms/TuneInPreferences.php:20 -msgid "Push metadata to your station on TuneIn?" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:25 -msgid "Station ID:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:31 -msgid "Partner Key:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:37 -msgid "Partner Id:" -msgstr "" - -#: airtime_mvc/application/forms/TuneInPreferences.php:78 -#: airtime_mvc/application/forms/TuneInPreferences.php:87 -msgid "Invalid TuneIn Settings. Please ensure your TuneIn settings are correct and try again." -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/layouts/scripts/layout.phtml:65 -msgid "Smart Block" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:68 -msgid "Webstream" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:73 -msgid "Upload" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:81 -#: airtime_mvc/application/views/scripts/showbuilder/builderDialog.phtml:10 -#: airtime_mvc/application/views/scripts/showbuilder/index.phtml:5 -msgid "Dashboard" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:87 -msgid "Podcasts" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:143 -#: airtime_mvc/application/layouts/scripts/layout.phtml:169 -msgid "Play" -msgstr "试听" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:144 -#: airtime_mvc/application/layouts/scripts/layout.phtml:170 -msgid "Stop" -msgstr "暂停" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:150 -msgid "Set Cue In" -msgstr "设为切入时间" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:157 -msgid "Set Cue Out" -msgstr "设为切出时间" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:174 -msgid "Cursor" -msgstr "设置游标" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:191 -msgid "Airtime Pro has a new look!" -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:192 -msgid "" -"Your favorite features are now even easier to use - and we've even\n" -" added a few new ones! Check out the video above or read on to find out more." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:195 -msgid "" -"Our new Dashboard view now has a powerful tabbed editing interface, so updating your tracks and playlists\n" -" is easier than ever." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:197 -msgid "" -"We've streamlined the Airtime interface to make navigation easier. With the most important tools\n" -" just a click away, you'll be on air and hands-free in no time." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:199 -msgid "Got a huge music library? No problem! With the new Upload page, you can drag and drop whole folders to our private cloud." -msgstr "" - -#: airtime_mvc/application/layouts/scripts/layout.phtml:200 -msgid "" -"The new Airtime is smoother, sleeker, and faster - on even more devices! We're committed to improving the Airtime\n" -" experience, no matter how you're connected." -msgstr "" - -#: 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/layouts/scripts/login.phtml:24 +#: airtime_mvc/application/common/DateHelper.php:213 #, php-format -msgid "%1$s copyright © %2$s All rights reserved."), - //set because only the checkbox row is not sortable. - "mColumns": "sortable" - } - ] - }; - + var lengthMenu = [[10, 25, 50, 100, 500, -1], [10, 25, 50, 100, 500, $.i18n._("All")]]; - var sDom = 'l<"dt-process-rel"r><"H"T><"dataTables_scrolling"t><"F"ip>'; + var sDom = 'l<"dt-process-rel"r><"H"><"dataTables_scrolling"t><"F"ip>'; var selectedLogItems = {}; @@ -155,25 +119,6 @@ var AIRTIME = (function(AIRTIME) { } return filename; } - - function setFlashFileName( nButton, oConfig, oFlash ) { - var filename = getFileName(oConfig.sExtends); - oFlash.setFileName( filename ); - - if (oConfig.sExtends == "pdf") { - this.fnSetText( oFlash, - "title:"+ this.fnGetTitle(oConfig) +"\n"+ - "message:"+ oConfig.sPdfMessage +"\n"+ - "colWidth:"+ this.fnCalcColRatios(oConfig) +"\n"+ - "orientation:"+ oConfig.sPdfOrientation +"\n"+ - "size:"+ oConfig.sPdfSize +"\n"+ - "--/TableToolsOpts--\n" + - this.fnGetTableData(oConfig)); - } - else { - this.fnSetText(oFlash, this.fnGetTableData(oConfig)); - } - } /* This callback can be used for all history tables */ function fnServerData( sSource, aoData, fnCallback ) { @@ -298,7 +243,6 @@ var AIRTIME = (function(AIRTIME) { "" + ""); - $menu.append("
Copied '+len+' row'+plural+' to the clipboard.
', - 1500 - ); - } - } ), - - "pdf": $.extend( {}, TableTools.buttonBase, { - "sAction": "flash_pdf", - "sNewLine": "\n", - "sFileName": "*.pdf", - "sButtonClass": "DTTT_button_pdf", - "sButtonText": "PDF", - "sPdfOrientation": "portrait", - "sPdfSize": "A4", - "sPdfMessage": "", - "fnClick": function( nButton, oConfig, flash ) { - this.fnSetText( flash, - "title:"+ this.fnGetTitle(oConfig) +"\n"+ - "message:"+ oConfig.sPdfMessage +"\n"+ - "colWidth:"+ this.fnCalcColRatios(oConfig) +"\n"+ - "orientation:"+ oConfig.sPdfOrientation +"\n"+ - "size:"+ oConfig.sPdfSize +"\n"+ - "--/TableToolsOpts--\n" + - this.fnGetTableData(oConfig) - ); - } - } ), - - "print": $.extend( {}, TableTools.buttonBase, { - "sInfo": "Please use your browser's print function to "+
- "print this table. Press escape when finished.",
- "sMessage": null,
- "bShowAll": true,
- "sToolTip": "View print view",
- "sButtonClass": "DTTT_button_print",
- "sButtonText": "Print",
- "fnClick": function ( nButton, oConfig ) {
- this.fnPrint( true, oConfig );
- }
- } ),
-
- "text": $.extend( {}, TableTools.buttonBase ),
-
- "select": $.extend( {}, TableTools.buttonBase, {
- "sButtonText": "Select button",
- "fnSelect": function( nButton, oConfig ) {
- if ( this.fnGetSelected().length !== 0 ) {
- $(nButton).removeClass( this.classes.buttons.disabled );
- } else {
- $(nButton).addClass( this.classes.buttons.disabled );
- }
- },
- "fnInit": function( nButton, oConfig ) {
- $(nButton).addClass( this.classes.buttons.disabled );
- }
- } ),
-
- "select_single": $.extend( {}, TableTools.buttonBase, {
- "sButtonText": "Select button",
- "fnSelect": function( nButton, oConfig ) {
- var iSelected = this.fnGetSelected().length;
- if ( iSelected == 1 ) {
- $(nButton).removeClass( this.classes.buttons.disabled );
- } else {
- $(nButton).addClass( this.classes.buttons.disabled );
- }
- },
- "fnInit": function( nButton, oConfig ) {
- $(nButton).addClass( this.classes.buttons.disabled );
- }
- } ),
-
- "select_all": $.extend( {}, TableTools.buttonBase, {
- "sButtonText": "Select all",
- "fnClick": function( nButton, oConfig ) {
- this.fnSelectAll();
- },
- "fnSelect": function( nButton, oConfig ) {
- if ( this.fnGetSelected().length == this.s.dt.fnRecordsDisplay() ) {
- $(nButton).addClass( this.classes.buttons.disabled );
- } else {
- $(nButton).removeClass( this.classes.buttons.disabled );
- }
- }
- } ),
-
- "select_none": $.extend( {}, TableTools.buttonBase, {
- "sButtonText": "Deselect all",
- "fnClick": function( nButton, oConfig ) {
- this.fnSelectNone();
- },
- "fnSelect": function( nButton, oConfig ) {
- if ( this.fnGetSelected().length !== 0 ) {
- $(nButton).removeClass( this.classes.buttons.disabled );
- } else {
- $(nButton).addClass( this.classes.buttons.disabled );
- }
- },
- "fnInit": function( nButton, oConfig ) {
- $(nButton).addClass( this.classes.buttons.disabled );
- }
- } ),
-
- "ajax": $.extend( {}, TableTools.buttonBase, {
- "sAjaxUrl": "/xhr.php",
- "sButtonText": "Ajax button",
- "fnClick": function( nButton, oConfig ) {
- var sData = this.fnGetTableData(oConfig);
- $.ajax( {
- "url": oConfig.sAjaxUrl,
- "data": [
- { "name": "tableData", "value": sData }
- ],
- "success": oConfig.fnAjaxComplete,
- "dataType": "json",
- "type": "POST",
- "cache": false,
- "error": function () {
- alert( "Error detected when sending table data to server" );
- }
- } );
- },
- "fnAjaxComplete": function( json ) {
- alert( 'Ajax complete' );
- }
- } ),
-
- "div": $.extend( {}, TableTools.buttonBase, {
- "sAction": "div",
- "sTag": "div",
- "sButtonClass": "DTTT_nonbutton",
- "sButtonText": "Text button"
- } ),
-
- "collection": $.extend( {}, TableTools.buttonBase, {
- "sAction": "collection",
- "sButtonClass": "DTTT_button_collection",
- "sButtonText": "Collection",
- "fnClick": function( nButton, oConfig ) {
- this._fnCollectionShow(nButton, oConfig);
- }
- } )
-};
-/*
- * on* callback parameters:
- * 1. node - button element
- * 2. object - configuration object for this button
- * 3. object - ZeroClipboard reference (flash button only)
- * 4. string - Returned string from Flash (flash button only - and only on 'complete')
- */
-
-
-
-/**
- * @namespace Classes used by TableTools - allows the styles to be override easily.
- * Note that when TableTools initialises it will take a copy of the classes object
- * and will use its internal copy for the remainder of its run time.
- */
-TableTools.classes = {
- "container": "DTTT_container",
- "buttons": {
- "normal": "DTTT_button",
- "disabled": "DTTT_disabled"
- },
- "collection": {
- "container": "DTTT_collection",
- "background": "DTTT_collection_background",
- "buttons": {
- "normal": "DTTT_button",
- "disabled": "DTTT_disabled"
- }
- },
- "select": {
- "table": "DTTT_selectable",
- "row": "DTTT_selected"
- },
- "print": {
- "body": "DTTT_Print",
- "info": "DTTT_print_info",
- "message": "DTTT_PrintMessage"
- }
-};
-
-
-/**
- * @namespace ThemeRoller classes - built in for compatibility with DataTables'
- * bJQueryUI option.
- */
-TableTools.classes_themeroller = {
- "container": "DTTT_container ui-buttonset ui-buttonset-multi",
- "buttons": {
- "normal": "DTTT_button ui-button ui-state-default"
- },
- "collection": {
- "container": "DTTT_collection ui-buttonset ui-buttonset-multi"
- }
-};
-
-
-/**
- * @namespace TableTools default settings for initialisation
- */
-TableTools.DEFAULTS = {
- "sSwfPath": "media/swf/copy_csv_xls_pdf.swf",
- "sRowSelect": "none",
- "sSelectedClass": null,
- "fnPreRowSelect": null,
- "fnRowSelected": null,
- "fnRowDeselected": null,
- "aButtons": [ "copy", "csv", "xls", "pdf", "print" ],
- "oTags": {
- "container": "div",
- "button": "a", // We really want to use buttons here, but Firefox and IE ignore the
- // click on the Flash element in the button (but not mouse[in|out]).
- "liner": "span",
- "collection": {
- "container": "div",
- "button": "a",
- "liner": "span"
- }
- }
-};
-
-
-/**
- * Name of this class
- * @constant CLASS
- * @type String
- * @default TableTools
- */
-TableTools.prototype.CLASS = "TableTools";
-
-
-/**
- * TableTools version
- * @constant VERSION
- * @type String
- * @default See code
- */
-TableTools.VERSION = "2.1.5";
-TableTools.prototype.VERSION = TableTools.VERSION;
-
-
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * Initialisation
- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-
-/*
- * Register a new feature with DataTables
- */
-if ( typeof $.fn.dataTable == "function" &&
- typeof $.fn.dataTableExt.fnVersionCheck == "function" &&
- $.fn.dataTableExt.fnVersionCheck('1.9.0') )
-{
- $.fn.dataTableExt.aoFeatures.push( {
- "fnInit": function( oDTSettings ) {
- var oOpts = typeof oDTSettings.oInit.oTableTools != 'undefined' ?
- oDTSettings.oInit.oTableTools : {};
-
- var oTT = new TableTools( oDTSettings.oInstance, oOpts );
- TableTools._aInstances.push( oTT );
-
- return oTT.dom.container;
- },
- "cFeature": "T",
- "sFeature": "TableTools"
- } );
-}
-else
-{
- alert( "Warning: TableTools 2 requires DataTables 1.9.0 or newer - www.datatables.net/download");
-}
-
-$.fn.DataTable.TableTools = TableTools;
-
-})(jQuery, window, document);
diff --git a/airtime_mvc/public/js/datatables/plugin/TableTools-2.1.5/js/TableTools.min.js b/airtime_mvc/public/js/datatables/plugin/TableTools-2.1.5/js/TableTools.min.js
deleted file mode 100644
index e580c9936..000000000
--- a/airtime_mvc/public/js/datatables/plugin/TableTools-2.1.5/js/TableTools.min.js
+++ /dev/null
@@ -1,77 +0,0 @@
-// Simple Set Clipboard System
-// Author: Joseph Huckaby
-var ZeroClipboard_TableTools={version:"1.0.4-TableTools2",clients:{},moviePath:"",nextId:1,$:function(a){"string"==typeof a&&(a=document.getElementById(a));a.addClass||(a.hide=function(){this.style.display="none"},a.show=function(){this.style.display=""},a.addClass=function(a){this.removeClass(a);this.className+=" "+a},a.removeClass=function(a){this.className=this.className.replace(RegExp("\\s*"+a+"\\s*")," ").replace(/^\s+/,"").replace(/\s+$/,"")},a.hasClass=function(a){return!!this.className.match(RegExp("\\s*"+
-a+"\\s*"))});return a},setMoviePath:function(a){this.moviePath=a},dispatch:function(a,b,c){(a=this.clients[a])&&a.receiveEvent(b,c)},register:function(a,b){this.clients[a]=b},getDOMObjectPosition:function(a){var b={left:0,top:0,width:a.width?a.width:a.offsetWidth,height:a.height?a.height:a.offsetHeight};""!=a.style.width&&(b.width=a.style.width.replace("px",""));""!=a.style.height&&(b.height=a.style.height.replace("px",""));for(;a;)b.left+=a.offsetLeft,b.top+=a.offsetTop,a=a.offsetParent;return b},
-Client:function(a){this.handlers={};this.id=ZeroClipboard_TableTools.nextId++;this.movieId="ZeroClipboard_TableToolsMovie_"+this.id;ZeroClipboard_TableTools.register(this.id,this);a&&this.glue(a)}};
-ZeroClipboard_TableTools.Client.prototype={id:0,ready:!1,movie:null,clipText:"",fileName:"",action:"copy",handCursorEnabled:!0,cssEffects:!0,handlers:null,sized:!1,glue:function(a,b){this.domElement=ZeroClipboard_TableTools.$(a);var c=99;this.domElement.style.zIndex&&(c=parseInt(this.domElement.style.zIndex)+1);var d=ZeroClipboard_TableTools.getDOMObjectPosition(this.domElement);this.div=document.createElement("div");var e=this.div.style;e.position="absolute";e.left="0px";e.top="0px";e.width=d.width+
-"px";e.height=d.height+"px";e.zIndex=c;"undefined"!=typeof b&&""!=b&&(this.div.title=b);0!=d.width&&0!=d.height&&(this.sized=!0);this.domElement&&(this.domElement.appendChild(this.div),this.div.innerHTML=this.getHTML(d.width,d.height))},positionElement:function(){var a=ZeroClipboard_TableTools.getDOMObjectPosition(this.domElement),b=this.div.style;b.position="absolute";b.width=a.width+"px";b.height=a.height+"px";0!=a.width&&0!=a.height&&(this.sized=!0,b=this.div.childNodes[0],b.width=a.width,b.height=
-a.height)},getHTML:function(a,b){var c="",d="id="+this.id+"&width="+a+"&height="+b;if(navigator.userAgent.match(/MSIE/))var e=location.href.match(/^https/i)?"https://":"http://",c=c+('');else c+='';return c},hide:function(){this.div&&(this.div.style.left="-2000px")},show:function(){this.reposition()},destroy:function(){if(this.domElement&&this.div){this.hide();this.div.innerHTML="";var a=document.getElementsByTagName("body")[0];try{a.removeChild(this.div)}catch(b){}this.div=this.domElement=null}},reposition:function(a){a&&((this.domElement=ZeroClipboard_TableTools.$(a))||this.hide());if(this.domElement&&this.div){var a=ZeroClipboard_TableTools.getDOMObjectPosition(this.domElement),
-b=this.div.style;b.left=""+a.left+"px";b.top=""+a.top+"px"}},clearText:function(){this.clipText="";this.ready&&this.movie.clearText()},appendText:function(a){this.clipText+=a;this.ready&&this.movie.appendText(a)},setText:function(a){this.clipText=a;this.ready&&this.movie.setText(a)},setCharSet:function(a){this.charSet=a;this.ready&&this.movie.setCharSet(a)},setBomInc:function(a){this.incBom=a;this.ready&&this.movie.setBomInc(a)},setFileName:function(a){this.fileName=a;this.ready&&this.movie.setFileName(a)},
-setAction:function(a){this.action=a;this.ready&&this.movie.setAction(a)},addEventListener:function(a,b){a=a.toString().toLowerCase().replace(/^on/,"");this.handlers[a]||(this.handlers[a]=[]);this.handlers[a].push(b)},setHandCursor:function(a){this.handCursorEnabled=a;this.ready&&this.movie.setHandCursor(a)},setCSSEffects:function(a){this.cssEffects=!!a},receiveEvent:function(a,b){a=a.toString().toLowerCase().replace(/^on/,"");switch(a){case "load":this.movie=document.getElementById(this.movieId);
-if(!this.movie){var c=this;setTimeout(function(){c.receiveEvent("load",null)},1);return}if(!this.ready&&navigator.userAgent.match(/Firefox/)&&navigator.userAgent.match(/Windows/)){c=this;setTimeout(function(){c.receiveEvent("load",null)},100);this.ready=!0;return}this.ready=!0;this.movie.clearText();this.movie.appendText(this.clipText);this.movie.setFileName(this.fileName);this.movie.setAction(this.action);this.movie.setCharSet(this.charSet);this.movie.setBomInc(this.incBom);this.movie.setHandCursor(this.handCursorEnabled);
-break;case "mouseover":this.domElement&&this.cssEffects&&this.recoverActive&&this.domElement.addClass("active");break;case "mouseout":this.domElement&&this.cssEffects&&(this.recoverActive=!1,this.domElement.hasClass("active")&&(this.domElement.removeClass("active"),this.recoverActive=!0));break;case "mousedown":this.domElement&&this.cssEffects&&this.domElement.addClass("active");break;case "mouseup":this.domElement&&this.cssEffects&&(this.domElement.removeClass("active"),this.recoverActive=!1)}if(this.handlers[a])for(var d=
-0,e=this.handlers[a].length;d Copied "+a+" row"+(1==a?"":"s")+
-" to the clipboard. Please use your browser's print function to print this table. Press escape when finished.",sMessage:null,bShowAll:!0,sToolTip:"View print view",sButtonClass:"DTTT_button_print",sButtonText:"Print",fnClick:function(a,b){this.fnPrint(!0,b)}}),text:e.extend({},TableTools.buttonBase),select:e.extend({},TableTools.buttonBase,{sButtonText:"Select button",fnSelect:function(a){0!==this.fnGetSelected().length?e(a).removeClass(this.classes.buttons.disabled):e(a).addClass(this.classes.buttons.disabled)},
-fnInit:function(a){e(a).addClass(this.classes.buttons.disabled)}}),select_single:e.extend({},TableTools.buttonBase,{sButtonText:"Select button",fnSelect:function(a){1==this.fnGetSelected().length?e(a).removeClass(this.classes.buttons.disabled):e(a).addClass(this.classes.buttons.disabled)},fnInit:function(a){e(a).addClass(this.classes.buttons.disabled)}}),select_all:e.extend({},TableTools.buttonBase,{sButtonText:"Select all",fnClick:function(){this.fnSelectAll()},fnSelect:function(a){this.fnGetSelected().length==
-this.s.dt.fnRecordsDisplay()?e(a).addClass(this.classes.buttons.disabled):e(a).removeClass(this.classes.buttons.disabled)}}),select_none:e.extend({},TableTools.buttonBase,{sButtonText:"Deselect all",fnClick:function(){this.fnSelectNone()},fnSelect:function(a){0!==this.fnGetSelected().length?e(a).removeClass(this.classes.buttons.disabled):e(a).addClass(this.classes.buttons.disabled)},fnInit:function(a){e(a).addClass(this.classes.buttons.disabled)}}),ajax:e.extend({},TableTools.buttonBase,{sAjaxUrl:"/xhr.php",
-sButtonText:"Ajax button",fnClick:function(a,b){var c=this.fnGetTableData(b);e.ajax({url:b.sAjaxUrl,data:[{name:"tableData",value:c}],success:b.fnAjaxComplete,dataType:"json",type:"POST",cache:!1,error:function(){alert("Error detected when sending table data to server")}})},fnAjaxComplete:function(){alert("Ajax complete")}}),div:e.extend({},TableTools.buttonBase,{sAction:"div",sTag:"div",sButtonClass:"DTTT_nonbutton",sButtonText:"Text button"}),collection:e.extend({},TableTools.buttonBase,{sAction:"collection",
-sButtonClass:"DTTT_button_collection",sButtonText:"Collection",fnClick:function(a,b){this._fnCollectionShow(a,b)}})};TableTools.classes={container:"DTTT_container",buttons:{normal:"DTTT_button",disabled:"DTTT_disabled"},collection:{container:"DTTT_collection",background:"DTTT_collection_background",buttons:{normal:"DTTT_button",disabled:"DTTT_disabled"}},select:{table:"DTTT_selectable",row:"DTTT_selected"},print:{body:"DTTT_Print",info:"DTTT_print_info",message:"DTTT_PrintMessage"}};TableTools.classes_themeroller=
-{container:"DTTT_container ui-buttonset ui-buttonset-multi",buttons:{normal:"DTTT_button ui-button ui-state-default"},collection:{container:"DTTT_collection ui-buttonset ui-buttonset-multi"}};TableTools.DEFAULTS={sSwfPath:"media/swf/copy_csv_xls_pdf.swf",sRowSelect:"none",sSelectedClass:null,fnPreRowSelect:null,fnRowSelected:null,fnRowDeselected:null,aButtons:["copy","csv","xls","pdf","print"],oTags:{container:"div",button:"a",liner:"span",collection:{container:"div",button:"a",liner:"span"}}};TableTools.prototype.CLASS=
-"TableTools";TableTools.VERSION="2.1.5";TableTools.prototype.VERSION=TableTools.VERSION;"function"==typeof e.fn.dataTable&&"function"==typeof e.fn.dataTableExt.fnVersionCheck&&e.fn.dataTableExt.fnVersionCheck("1.9.0")?e.fn.dataTableExt.aoFeatures.push({fnInit:function(a){a=new TableTools(a.oInstance,"undefined"!=typeof a.oInit.oTableTools?a.oInit.oTableTools:{});TableTools._aInstances.push(a);return a.dom.container},cFeature:"T",sFeature:"TableTools"}):alert("Warning: TableTools 2 requires DataTables 1.9.0 or newer - www.datatables.net/download");
-e.fn.DataTable.TableTools=TableTools})(jQuery,window,document);
diff --git a/airtime_mvc/public/js/datatables/plugin/TableTools-2.1.5/js/TableTools.min.js.gz b/airtime_mvc/public/js/datatables/plugin/TableTools-2.1.5/js/TableTools.min.js.gz
deleted file mode 100644
index 01ce7c041..000000000
Binary files a/airtime_mvc/public/js/datatables/plugin/TableTools-2.1.5/js/TableTools.min.js.gz and /dev/null differ
diff --git a/airtime_mvc/public/js/datatables/plugin/TableTools-2.1.5/js/ZeroClipboard.js b/airtime_mvc/public/js/datatables/plugin/TableTools-2.1.5/js/ZeroClipboard.js
deleted file mode 100644
index de0f6b67b..000000000
--- a/airtime_mvc/public/js/datatables/plugin/TableTools-2.1.5/js/ZeroClipboard.js
+++ /dev/null
@@ -1,367 +0,0 @@
-// Simple Set Clipboard System
-// Author: Joseph Huckaby
-
-var ZeroClipboard_TableTools = {
-
- version: "1.0.4-TableTools2",
- clients: {}, // registered upload clients on page, indexed by id
- moviePath: '', // URL to movie
- nextId: 1, // ID of next movie
-
- $: function(thingy) {
- // simple DOM lookup utility function
- if (typeof(thingy) == 'string') thingy = document.getElementById(thingy);
- if (!thingy.addClass) {
- // extend element with a few useful methods
- thingy.hide = function() { this.style.display = 'none'; };
- thingy.show = function() { this.style.display = ''; };
- thingy.addClass = function(name) { this.removeClass(name); this.className += ' ' + name; };
- thingy.removeClass = function(name) {
- this.className = this.className.replace( new RegExp("\\s*" + name + "\\s*"), " ").replace(/^\s+/, '').replace(/\s+$/, '');
- };
- thingy.hasClass = function(name) {
- return !!this.className.match( new RegExp("\\s*" + name + "\\s*") );
- }
- }
- return thingy;
- },
-
- setMoviePath: function(path) {
- // set path to ZeroClipboard.swf
- this.moviePath = path;
- },
-
- dispatch: function(id, eventName, args) {
- // receive event from flash movie, send to client
- var client = this.clients[id];
- if (client) {
- client.receiveEvent(eventName, args);
- }
- },
-
- register: function(id, client) {
- // register new client to receive events
- this.clients[id] = client;
- },
-
- getDOMObjectPosition: function(obj) {
- // get absolute coordinates for dom element
- var info = {
- left: 0,
- top: 0,
- width: obj.width ? obj.width : obj.offsetWidth,
- height: obj.height ? obj.height : obj.offsetHeight
- };
-
- if ( obj.style.width != "" )
- info.width = obj.style.width.replace("px","");
-
- if ( obj.style.height != "" )
- info.height = obj.style.height.replace("px","");
-
- while (obj) {
- info.left += obj.offsetLeft;
- info.top += obj.offsetTop;
- obj = obj.offsetParent;
- }
-
- return info;
- },
-
- Client: function(elem) {
- // constructor for new simple upload client
- this.handlers = {};
-
- // unique ID
- this.id = ZeroClipboard_TableTools.nextId++;
- this.movieId = 'ZeroClipboard_TableToolsMovie_' + this.id;
-
- // register client with singleton to receive flash events
- ZeroClipboard_TableTools.register(this.id, this);
-
- // create movie
- if (elem) this.glue(elem);
- }
-};
-
-ZeroClipboard_TableTools.Client.prototype = {
-
- id: 0, // unique ID for us
- ready: false, // whether movie is ready to receive events or not
- movie: null, // reference to movie object
- clipText: '', // text to copy to clipboard
- fileName: '', // default file save name
- action: 'copy', // action to perform
- handCursorEnabled: true, // whether to show hand cursor, or default pointer cursor
- cssEffects: true, // enable CSS mouse effects on dom container
- handlers: null, // user event handlers
- sized: false,
-
- glue: function(elem, title) {
- // glue to DOM element
- // elem can be ID or actual DOM element object
- this.domElement = ZeroClipboard_TableTools.$(elem);
-
- // float just above object, or zIndex 99 if dom element isn't set
- var zIndex = 99;
- if (this.domElement.style.zIndex) {
- zIndex = parseInt(this.domElement.style.zIndex) + 1;
- }
-
- // find X/Y position of domElement
- var box = ZeroClipboard_TableTools.getDOMObjectPosition(this.domElement);
-
- // create floating DIV above element
- this.div = document.createElement('div');
- var style = this.div.style;
- style.position = 'absolute';
- style.left = '0px';
- style.top = '0px';
- style.width = (box.width) + 'px';
- style.height = box.height + 'px';
- style.zIndex = zIndex;
-
- if ( typeof title != "undefined" && title != "" ) {
- this.div.title = title;
- }
- if ( box.width != 0 && box.height != 0 ) {
- this.sized = true;
- }
-
- // style.backgroundColor = '#f00'; // debug
- if ( this.domElement ) {
- this.domElement.appendChild(this.div);
- this.div.innerHTML = this.getHTML( box.width, box.height );
- }
- },
-
- positionElement: function() {
- var box = ZeroClipboard_TableTools.getDOMObjectPosition(this.domElement);
- var style = this.div.style;
-
- style.position = 'absolute';
- //style.left = (this.domElement.offsetLeft)+'px';
- //style.top = this.domElement.offsetTop+'px';
- style.width = box.width + 'px';
- style.height = box.height + 'px';
-
- if ( box.width != 0 && box.height != 0 ) {
- this.sized = true;
- } else {
- return;
- }
-
- var flash = this.div.childNodes[0];
- flash.width = box.width;
- flash.height = box.height;
- },
-
- getHTML: function(width, height) {
- // return HTML for movie
- var html = '';
- var flashvars = 'id=' + this.id +
- '&width=' + width +
- '&height=' + height;
-
- if (navigator.userAgent.match(/MSIE/)) {
- // IE gets an OBJECT tag
- var protocol = location.href.match(/^https/i) ? 'https://' : 'http://';
- html += '';
- }
- else {
- // all other browsers get an EMBED tag
- html += '';
- }
- return html;
- },
-
- hide: function() {
- // temporarily hide floater offscreen
- if (this.div) {
- this.div.style.left = '-2000px';
- }
- },
-
- show: function() {
- // show ourselves after a call to hide()
- this.reposition();
- },
-
- destroy: function() {
- // destroy control and floater
- if (this.domElement && this.div) {
- this.hide();
- this.div.innerHTML = '';
-
- var body = document.getElementsByTagName('body')[0];
- try { body.removeChild( this.div ); } catch(e) {;}
-
- this.domElement = null;
- this.div = null;
- }
- },
-
- reposition: function(elem) {
- // reposition our floating div, optionally to new container
- // warning: container CANNOT change size, only position
- if (elem) {
- this.domElement = ZeroClipboard_TableTools.$(elem);
- if (!this.domElement) this.hide();
- }
-
- if (this.domElement && this.div) {
- var box = ZeroClipboard_TableTools.getDOMObjectPosition(this.domElement);
- var style = this.div.style;
- style.left = '' + box.left + 'px';
- style.top = '' + box.top + 'px';
- }
- },
-
- clearText: function() {
- // clear the text to be copy / saved
- this.clipText = '';
- if (this.ready) this.movie.clearText();
- },
-
- appendText: function(newText) {
- // append text to that which is to be copied / saved
- this.clipText += newText;
- if (this.ready) { this.movie.appendText(newText) ;}
- },
-
- setText: function(newText) {
- // set text to be copied to be copied / saved
- this.clipText = newText;
- if (this.ready) { this.movie.setText(newText) ;}
- },
-
- setCharSet: function(charSet) {
- // set the character set (UTF16LE or UTF8)
- this.charSet = charSet;
- if (this.ready) { this.movie.setCharSet(charSet) ;}
- },
-
- setBomInc: function(bomInc) {
- // set if the BOM should be included or not
- this.incBom = bomInc;
- if (this.ready) { this.movie.setBomInc(bomInc) ;}
- },
-
- setFileName: function(newText) {
- // set the file name
- this.fileName = newText;
- if (this.ready) this.movie.setFileName(newText);
- },
-
- setAction: function(newText) {
- // set action (save or copy)
- this.action = newText;
- if (this.ready) this.movie.setAction(newText);
- },
-
- addEventListener: function(eventName, func) {
- // add user event listener for event
- // event types: load, queueStart, fileStart, fileComplete, queueComplete, progress, error, cancel
- eventName = eventName.toString().toLowerCase().replace(/^on/, '');
- if (!this.handlers[eventName]) this.handlers[eventName] = [];
- this.handlers[eventName].push(func);
- },
-
- setHandCursor: function(enabled) {
- // enable hand cursor (true), or default arrow cursor (false)
- this.handCursorEnabled = enabled;
- if (this.ready) this.movie.setHandCursor(enabled);
- },
-
- setCSSEffects: function(enabled) {
- // enable or disable CSS effects on DOM container
- this.cssEffects = !!enabled;
- },
-
- receiveEvent: function(eventName, args) {
- // receive event from flash
- eventName = eventName.toString().toLowerCase().replace(/^on/, '');
-
- // special behavior for certain events
- switch (eventName) {
- case 'load':
- // movie claims it is ready, but in IE this isn't always the case...
- // bug fix: Cannot extend EMBED DOM elements in Firefox, must use traditional function
- this.movie = document.getElementById(this.movieId);
- if (!this.movie) {
- var self = this;
- setTimeout( function() { self.receiveEvent('load', null); }, 1 );
- return;
- }
-
- // firefox on pc needs a "kick" in order to set these in certain cases
- if (!this.ready && navigator.userAgent.match(/Firefox/) && navigator.userAgent.match(/Windows/)) {
- var self = this;
- setTimeout( function() { self.receiveEvent('load', null); }, 100 );
- this.ready = true;
- return;
- }
-
- this.ready = true;
- this.movie.clearText();
- this.movie.appendText( this.clipText );
- this.movie.setFileName( this.fileName );
- this.movie.setAction( this.action );
- this.movie.setCharSet( this.charSet );
- this.movie.setBomInc( this.incBom );
- this.movie.setHandCursor( this.handCursorEnabled );
- break;
-
- case 'mouseover':
- if (this.domElement && this.cssEffects) {
- //this.domElement.addClass('hover');
- if (this.recoverActive) this.domElement.addClass('active');
- }
- break;
-
- case 'mouseout':
- if (this.domElement && this.cssEffects) {
- this.recoverActive = false;
- if (this.domElement.hasClass('active')) {
- this.domElement.removeClass('active');
- this.recoverActive = true;
- }
- //this.domElement.removeClass('hover');
- }
- break;
-
- case 'mousedown':
- if (this.domElement && this.cssEffects) {
- this.domElement.addClass('active');
- }
- break;
-
- case 'mouseup':
- if (this.domElement && this.cssEffects) {
- this.domElement.removeClass('active');
- this.recoverActive = false;
- }
- break;
- } // switch eventName
-
- if (this.handlers[eventName]) {
- for (var idx = 0, len = this.handlers[eventName].length; idx < len; idx++) {
- var func = this.handlers[eventName][idx];
-
- if (typeof(func) == 'function') {
- // actual function reference
- func(this, args);
- }
- else if ((typeof(func) == 'object') && (func.length == 2)) {
- // PHP style object + method, i.e. [myObject, 'myMethod']
- func[0][ func[1] ](this, args);
- }
- else if (typeof(func) == 'string') {
- // name of function
- window[func](this, args);
- }
- } // foreach event handler defined
- } // user defined handler for event
- }
-
-};
diff --git a/airtime_mvc/public/js/datatables/plugin/TableTools-2.1.5/swf/copy_csv_xls.swf b/airtime_mvc/public/js/datatables/plugin/TableTools-2.1.5/swf/copy_csv_xls.swf
deleted file mode 100644
index 082c7acbf..000000000
Binary files a/airtime_mvc/public/js/datatables/plugin/TableTools-2.1.5/swf/copy_csv_xls.swf and /dev/null differ
diff --git a/airtime_mvc/public/js/datatables/plugin/TableTools-2.1.5/swf/copy_csv_xls_pdf.swf b/airtime_mvc/public/js/datatables/plugin/TableTools-2.1.5/swf/copy_csv_xls_pdf.swf
deleted file mode 100644
index 063131dfe..000000000
Binary files a/airtime_mvc/public/js/datatables/plugin/TableTools-2.1.5/swf/copy_csv_xls_pdf.swf and /dev/null differ
diff --git a/airtime_mvc/public/js/flot/API.txt b/airtime_mvc/public/js/flot/API.txt
deleted file mode 100644
index 8a8dbc23d..000000000
--- a/airtime_mvc/public/js/flot/API.txt
+++ /dev/null
@@ -1,1201 +0,0 @@
-Flot Reference
---------------
-
-Consider a call to the plot function:
-
- var plot = $.plot(placeholder, data, options)
-
-The placeholder is a jQuery object or DOM element or jQuery expression
-that the plot will be put into. This placeholder needs to have its
-width and height set as explained in the README (go read that now if
-you haven't, it's short). The plot will modify some properties of the
-placeholder so it's recommended you simply pass in a div that you
-don't use for anything else. Make sure you check any fancy styling
-you apply to the div, e.g. background images have been reported to be a
-problem on IE 7.
-
-The format of the data is documented below, as is the available
-options. The plot object returned from the call has some methods you
-can call. These are documented separately below.
-
-Note that in general Flot gives no guarantees if you change any of the
-objects you pass in to the plot function or get out of it since
-they're not necessarily deep-copied.
-
-
-Data Format
------------
-
-The data is an array of data series:
-
- [ series1, series2, ... ]
-
-A series can either be raw data or an object with properties. The raw
-data format is an array of points:
-
- [ [x1, y1], [x2, y2], ... ]
-
-E.g.
-
- [ [1, 3], [2, 14.01], [3.5, 3.14] ]
-
-Note that to simplify the internal logic in Flot both the x and y
-values must be numbers (even if specifying time series, see below for
-how to do this). This is a common problem because you might retrieve
-data from the database and serialize them directly to JSON without
-noticing the wrong type. If you're getting mysterious errors, double
-check that you're inputting numbers and not strings.
-
-If a null is specified as a point or if one of the coordinates is null
-or couldn't be converted to a number, the point is ignored when
-drawing. As a special case, a null value for lines is interpreted as a
-line segment end, i.e. the points before and after the null value are
-not connected.
-
-Lines and points take two coordinates. For filled lines and bars, you
-can specify a third coordinate which is the bottom of the filled
-area/bar (defaults to 0).
-
-The format of a single series object is as follows:
-
- {
- color: color or number
- data: rawdata
- label: string
- lines: specific lines options
- bars: specific bars options
- points: specific points options
- xaxis: number
- yaxis: number
- clickable: boolean
- hoverable: boolean
- shadowSize: number
- }
-
-You don't have to specify any of them except the data, the rest are
-options that will get default values. Typically you'd only specify
-label and data, like this:
-
- {
- label: "y = 3",
- data: [[0, 3], [10, 3]]
- }
-
-The label is used for the legend, if you don't specify one, the series
-will not show up in the legend.
-
-If you don't specify color, the series will get a color from the
-auto-generated colors. The color is either a CSS color specification
-(like "rgb(255, 100, 123)") or an integer that specifies which of
-auto-generated colors to select, e.g. 0 will get color no. 0, etc.
-
-The latter is mostly useful if you let the user add and remove series,
-in which case you can hard-code the color index to prevent the colors
-from jumping around between the series.
-
-The "xaxis" and "yaxis" options specify which axis to use. The axes
-are numbered from 1 (default), so { yaxis: 2} means that the series
-should be plotted against the second y axis.
-
-"clickable" and "hoverable" can be set to false to disable
-interactivity for specific series if interactivity is turned on in
-the plot, see below.
-
-The rest of the options are all documented below as they are the same
-as the default options passed in via the options parameter in the plot
-commmand. When you specify them for a specific data series, they will
-override the default options for the plot for that data series.
-
-Here's a complete example of a simple data specification:
-
- [ { label: "Foo", data: [ [10, 1], [17, -14], [30, 5] ] },
- { label: "Bar", data: [ [11, 13], [19, 11], [30, -7] ] } ]
-
-
-Plot Options
-------------
-
-All options are completely optional. They are documented individually
-below, to change them you just specify them in an object, e.g.
-
- var options = {
- series: {
- lines: { show: true },
- points: { show: true }
- }
- };
-
- $.plot(placeholder, data, options);
-
-
-Customizing the legend
-======================
-
- legend: {
- show: boolean
- labelFormatter: null or (fn: string, series object -> string)
- labelBoxBorderColor: color
- noColumns: number
- position: "ne" or "nw" or "se" or "sw"
- margin: number of pixels or [x margin, y margin]
- backgroundColor: null or color
- backgroundOpacity: number between 0 and 1
- container: null or jQuery object/DOM element/jQuery expression
- }
-
-The legend is generated as a table with the data series labels and
-small label boxes with the color of the series. If you want to format
-the labels in some way, e.g. make them to links, you can pass in a
-function for "labelFormatter". Here's an example that makes them
-clickable:
-
- labelFormatter: function(label, series) {
- // series is the series object for the label
- return '' + label + '';
- }
-
-"noColumns" is the number of columns to divide the legend table into.
-"position" specifies the overall placement of the legend within the
-plot (top-right, top-left, etc.) and margin the distance to the plot
-edge (this can be either a number or an array of two numbers like [x,
-y]). "backgroundColor" and "backgroundOpacity" specifies the
-background. The default is a partly transparent auto-detected
-background.
-
-If you want the legend to appear somewhere else in the DOM, you can
-specify "container" as a jQuery object/expression to put the legend
-table into. The "position" and "margin" etc. options will then be
-ignored. Note that Flot will overwrite the contents of the container.
-
-
-Customizing the axes
-====================
-
- xaxis, yaxis: {
- show: null or true/false
- position: "bottom" or "top" or "left" or "right"
- mode: null or "time"
-
- color: null or color spec
- tickColor: null or color spec
-
- min: null or number
- max: null or number
- autoscaleMargin: null or number
-
- transform: null or fn: number -> number
- inverseTransform: null or fn: number -> number
-
- ticks: null or number or ticks array or (fn: range -> ticks array)
- tickSize: number or array
- minTickSize: number or array
- tickFormatter: (fn: number, object -> string) or string
- tickDecimals: null or number
-
- labelWidth: null or number
- labelHeight: null or number
- reserveSpace: null or true
-
- tickLength: null or number
-
- alignTicksWithAxis: null or number
- }
-
-All axes have the same kind of options. The following describes how to
-configure one axis, see below for what to do if you've got more than
-one x axis or y axis.
-
-If you don't set the "show" option (i.e. it is null), visibility is
-auto-detected, i.e. the axis will show up if there's data associated
-with it. You can override this by setting the "show" option to true or
-false.
-
-The "position" option specifies where the axis is placed, bottom or
-top for x axes, left or right for y axes. The "mode" option determines
-how the data is interpreted, the default of null means as decimal
-numbers. Use "time" for time series data, see the time series data
-section.
-
-The "color" option determines the color of the labels and ticks for
-the axis (default is the grid color). For more fine-grained control
-you can also set the color of the ticks separately with "tickColor"
-(otherwise it's autogenerated as the base color with some
-transparency).
-
-The options "min"/"max" are the precise minimum/maximum value on the
-scale. If you don't specify either of them, a value will automatically
-be chosen based on the minimum/maximum data values. Note that Flot
-always examines all the data values you feed to it, even if a
-restriction on another axis may make some of them invisible (this
-makes interactive use more stable).
-
-The "autoscaleMargin" is a bit esoteric: it's the fraction of margin
-that the scaling algorithm will add to avoid that the outermost points
-ends up on the grid border. Note that this margin is only applied when
-a min or max value is not explicitly set. If a margin is specified,
-the plot will furthermore extend the axis end-point to the nearest
-whole tick. The default value is "null" for the x axes and 0.02 for y
-axes which seems appropriate for most cases.
-
-"transform" and "inverseTransform" are callbacks you can put in to
-change the way the data is drawn. You can design a function to
-compress or expand certain parts of the axis non-linearly, e.g.
-suppress weekends or compress far away points with a logarithm or some
-other means. When Flot draws the plot, each value is first put through
-the transform function. Here's an example, the x axis can be turned
-into a natural logarithm axis with the following code:
-
- xaxis: {
- transform: function (v) { return Math.log(v); },
- inverseTransform: function (v) { return Math.exp(v); }
- }
-
-Similarly, for reversing the y axis so the values appear in inverse
-order:
-
- yaxis: {
- transform: function (v) { return -v; },
- inverseTransform: function (v) { return -v; }
- }
-
-Note that for finding extrema, Flot assumes that the transform
-function does not reorder values (it should be monotone).
-
-The inverseTransform is simply the inverse of the transform function
-(so v == inverseTransform(transform(v)) for all relevant v). It is
-required for converting from canvas coordinates to data coordinates,
-e.g. for a mouse interaction where a certain pixel is clicked. If you
-don't use any interactive features of Flot, you may not need it.
-
-
-The rest of the options deal with the ticks.
-
-If you don't specify any ticks, a tick generator algorithm will make
-some for you. The algorithm has two passes. It first estimates how
-many ticks would be reasonable and uses this number to compute a nice
-round tick interval size. Then it generates the ticks.
-
-You can specify how many ticks the algorithm aims for by setting
-"ticks" to a number. The algorithm always tries to generate reasonably
-round tick values so even if you ask for three ticks, you might get
-five if that fits better with the rounding. If you don't want any
-ticks at all, set "ticks" to 0 or an empty array.
-
-Another option is to skip the rounding part and directly set the tick
-interval size with "tickSize". If you set it to 2, you'll get ticks at
-2, 4, 6, etc. Alternatively, you can specify that you just don't want
-ticks at a size less than a specific tick size with "minTickSize".
-Note that for time series, the format is an array like [2, "month"],
-see the next section.
-
-If you want to completely override the tick algorithm, you can specify
-an array for "ticks", either like this:
-
- ticks: [0, 1.2, 2.4]
-
-Or like this where the labels are also customized:
-
- ticks: [[0, "zero"], [1.2, "one mark"], [2.4, "two marks"]]
-
-You can mix the two if you like.
-
-For extra flexibility you can specify a function as the "ticks"
-parameter. The function will be called with an object with the axis
-min and max and should return a ticks array. Here's a simplistic tick
-generator that spits out intervals of pi, suitable for use on the x
-axis for trigonometric functions:
-
- function piTickGenerator(axis) {
- var res = [], i = Math.floor(axis.min / Math.PI);
- do {
- var v = i * Math.PI;
- res.push([v, i + "\u03c0"]);
- ++i;
- } while (v < axis.max);
-
- return res;
- }
-
-You can control how the ticks look like with "tickDecimals", the
-number of decimals to display (default is auto-detected).
-
-Alternatively, for ultimate control over how ticks are formatted you can
-provide a function to "tickFormatter". The function is passed two
-parameters, the tick value and an axis object with information, and
-should return a string. The default formatter looks like this:
-
- function formatter(val, axis) {
- return val.toFixed(axis.tickDecimals);
- }
-
-The axis object has "min" and "max" with the range of the axis,
-"tickDecimals" with the number of decimals to round the value to and
-"tickSize" with the size of the interval between ticks as calculated
-by the automatic axis scaling algorithm (or specified by you). Here's
-an example of a custom formatter:
-
- function suffixFormatter(val, axis) {
- if (val > 1000000)
- return (val / 1000000).toFixed(axis.tickDecimals) + " MB";
- else if (val > 1000)
- return (val / 1000).toFixed(axis.tickDecimals) + " kB";
- else
- return val.toFixed(axis.tickDecimals) + " B";
- }
-
-"labelWidth" and "labelHeight" specifies a fixed size of the tick
-labels in pixels. They're useful in case you need to align several
-plots. "reserveSpace" means that even if an axis isn't shown, Flot
-should reserve space for it - it is useful in combination with
-labelWidth and labelHeight for aligning multi-axis charts.
-
-"tickLength" is the length of the tick lines in pixels. By default, the
-innermost axes will have ticks that extend all across the plot, while
-any extra axes use small ticks. A value of null means use the default,
-while a number means small ticks of that length - set it to 0 to hide
-the lines completely.
-
-If you set "alignTicksWithAxis" to the number of another axis, e.g.
-alignTicksWithAxis: 1, Flot will ensure that the autogenerated ticks
-of this axis are aligned with the ticks of the other axis. This may
-improve the looks, e.g. if you have one y axis to the left and one to
-the right, because the grid lines will then match the ticks in both
-ends. The trade-off is that the forced ticks won't necessarily be at
-natural places.
-
-
-Multiple axes
-=============
-
-If you need more than one x axis or y axis, you need to specify for
-each data series which axis they are to use, as described under the
-format of the data series, e.g. { data: [...], yaxis: 2 } specifies
-that a series should be plotted against the second y axis.
-
-To actually configure that axis, you can't use the xaxis/yaxis options
-directly - instead there are two arrays in the options:
-
- xaxes: []
- yaxes: []
-
-Here's an example of configuring a single x axis and two y axes (we
-can leave options of the first y axis empty as the defaults are fine):
-
- {
- xaxes: [ { position: "top" } ],
- yaxes: [ { }, { position: "right", min: 20 } ]
- }
-
-The arrays get their default values from the xaxis/yaxis settings, so
-say you want to have all y axes start at zero, you can simply specify
-yaxis: { min: 0 } instead of adding a min parameter to all the axes.
-
-Generally, the various interfaces in Flot dealing with data points
-either accept an xaxis/yaxis parameter to specify which axis number to
-use (starting from 1), or lets you specify the coordinate directly as
-x2/x3/... or x2axis/x3axis/... instead of "x" or "xaxis".
-
-
-Time series data
-================
-
-Time series are a bit more difficult than scalar data because
-calendars don't follow a simple base 10 system. For many cases, Flot
-abstracts most of this away, but it can still be a bit difficult to
-get the data into Flot. So we'll first discuss the data format.
-
-The time series support in Flot is based on Javascript timestamps,
-i.e. everywhere a time value is expected or handed over, a Javascript
-timestamp number is used. This is a number, not a Date object. A
-Javascript timestamp is the number of milliseconds since January 1,
-1970 00:00:00 UTC. This is almost the same as Unix timestamps, except it's
-in milliseconds, so remember to multiply by 1000!
-
-You can see a timestamp like this
-
- alert((new Date()).getTime())
-
-Normally you want the timestamps to be displayed according to a
-certain time zone, usually the time zone in which the data has been
-produced. However, Flot always displays timestamps according to UTC.
-It has to as the only alternative with core Javascript is to interpret
-the timestamps according to the time zone that the visitor is in,
-which means that the ticks will shift unpredictably with the time zone
-and daylight savings of each visitor.
-
-So given that there's no good support for custom time zones in
-Javascript, you'll have to take care of this server-side.
-
-The easiest way to think about it is to pretend that the data
-production time zone is UTC, even if it isn't. So if you have a
-datapoint at 2002-02-20 08:00, you can generate a timestamp for eight
-o'clock UTC even if it really happened eight o'clock UTC+0200.
-
-In PHP you can get an appropriate timestamp with
-'strtotime("2002-02-20 UTC") * 1000', in Python with
-'calendar.timegm(datetime_object.timetuple()) * 1000', in .NET with
-something like:
-
- public static int GetJavascriptTimestamp(System.DateTime input)
- {
- System.TimeSpan span = new System.TimeSpan(System.DateTime.Parse("1/1/1970").Ticks);
- System.DateTime time = input.Subtract(span);
- return (long)(time.Ticks / 10000);
- }
-
-Javascript also has some support for parsing date strings, so it is
-possible to generate the timestamps manually client-side.
-
-If you've already got the real UTC timestamp, it's too late to use the
-pretend trick described above. But you can fix up the timestamps by
-adding the time zone offset, e.g. for UTC+0200 you would add 2 hours
-to the UTC timestamp you got. Then it'll look right on the plot. Most
-programming environments have some means of getting the timezone
-offset for a specific date (note that you need to get the offset for
-each individual timestamp to account for daylight savings).
-
-Once you've gotten the timestamps into the data and specified "time"
-as the axis mode, Flot will automatically generate relevant ticks and
-format them. As always, you can tweak the ticks via the "ticks" option
-- just remember that the values should be timestamps (numbers), not
-Date objects.
-
-Tick generation and formatting can also be controlled separately
-through the following axis options:
-
- minTickSize: array
- timeformat: null or format string
- monthNames: null or array of size 12 of strings
- twelveHourClock: boolean
-
-Here "timeformat" is a format string to use. You might use it like
-this:
-
- xaxis: {
- mode: "time"
- timeformat: "%y/%m/%d"
- }
-
-This will result in tick labels like "2000/12/24". The following
-specifiers are supported
-
- %h: hours
- %H: hours (left-padded with a zero)
- %M: minutes (left-padded with a zero)
- %S: seconds (left-padded with a zero)
- %d: day of month (1-31), use %0d for zero-padding
- %m: month (1-12), use %0m for zero-padding
- %y: year (four digits)
- %b: month name (customizable)
- %p: am/pm, additionally switches %h/%H to 12 hour instead of 24
- %P: AM/PM (uppercase version of %p)
-
-Inserting a zero like %0m or %0d means that the specifier will be
-left-padded with a zero if it's only single-digit. So %y-%0m-%0d
-results in unambigious ISO timestamps like 2007-05-10 (for May 10th).
-
-You can customize the month names with the "monthNames" option. For
-instance, for Danish you might specify:
-
- monthNames: ["jan", "feb", "mar", "apr", "maj", "jun", "jul", "aug", "sep", "okt", "nov", "dec"]
-
-If you set "twelveHourClock" to true, the autogenerated timestamps
-will use 12 hour AM/PM timestamps instead of 24 hour.
-
-The format string and month names are used by a very simple built-in
-format function that takes a date object, a format string (and
-optionally an array of month names) and returns the formatted string.
-If needed, you can access it as $.plot.formatDate(date, formatstring,
-monthNames) or even replace it with another more advanced function
-from a date library if you're feeling adventurous.
-
-If everything else fails, you can control the formatting by specifying
-a custom tick formatter function as usual. Here's a simple example
-which will format December 24 as 24/12:
-
- tickFormatter: function (val, axis) {
- var d = new Date(val);
- return d.getUTCDate() + "/" + (d.getUTCMonth() + 1);
- }
-
-Note that for the time mode "tickSize" and "minTickSize" are a bit
-special in that they are arrays on the form "[value, unit]" where unit
-is one of "second", "minute", "hour", "day", "month" and "year". So
-you can specify
-
- minTickSize: [1, "month"]
-
-to get a tick interval size of at least 1 month and correspondingly,
-if axis.tickSize is [2, "day"] in the tick formatter, the ticks have
-been produced with two days in-between.
-
-
-
-Customizing the data series
-===========================
-
- series: {
- lines, points, bars: {
- show: boolean
- lineWidth: number
- fill: boolean or number
- fillColor: null or color/gradient
- }
-
- points: {
- radius: number
- symbol: "circle" or function
- }
-
- bars: {
- barWidth: number
- align: "left" or "center"
- horizontal: boolean
- }
-
- lines: {
- steps: boolean
- }
-
- shadowSize: number
- }
-
- colors: [ color1, color2, ... ]
-
-The options inside "series: {}" are copied to each of the series. So
-you can specify that all series should have bars by putting it in the
-global options, or override it for individual series by specifying
-bars in a particular the series object in the array of data.
-
-The most important options are "lines", "points" and "bars" that
-specify whether and how lines, points and bars should be shown for
-each data series. In case you don't specify anything at all, Flot will
-default to showing lines (you can turn this off with
-lines: { show: false }). You can specify the various types
-independently of each other, and Flot will happily draw each of them
-in turn (this is probably only useful for lines and points), e.g.
-
- var options = {
- series: {
- lines: { show: true, fill: true, fillColor: "rgba(255, 255, 255, 0.8)" },
- points: { show: true, fill: false }
- }
- };
-
-"lineWidth" is the thickness of the line or outline in pixels. You can
-set it to 0 to prevent a line or outline from being drawn; this will
-also hide the shadow.
-
-"fill" is whether the shape should be filled. For lines, this produces
-area graphs. You can use "fillColor" to specify the color of the fill.
-If "fillColor" evaluates to false (default for everything except
-points which are filled with white), the fill color is auto-set to the
-color of the data series. You can adjust the opacity of the fill by
-setting fill to a number between 0 (fully transparent) and 1 (fully
-opaque).
-
-For bars, fillColor can be a gradient, see the gradient documentation
-below. "barWidth" is the width of the bars in units of the x axis (or
-the y axis if "horizontal" is true), contrary to most other measures
-that are specified in pixels. For instance, for time series the unit
-is milliseconds so 24 * 60 * 60 * 1000 produces bars with the width of
-a day. "align" specifies whether a bar should be left-aligned
-(default) or centered on top of the value it represents. When
-"horizontal" is on, the bars are drawn horizontally, i.e. from the y
-axis instead of the x axis; note that the bar end points are still
-defined in the same way so you'll probably want to swap the
-coordinates if you've been plotting vertical bars first.
-
-For lines, "steps" specifies whether two adjacent data points are
-connected with a straight (possibly diagonal) line or with first a
-horizontal and then a vertical line. Note that this transforms the
-data by adding extra points.
-
-For points, you can specify the radius and the symbol. The only
-built-in symbol type is circles, for other types you can use a plugin
-or define them yourself by specifying a callback:
-
- function cross(ctx, x, y, radius, shadow) {
- var size = radius * Math.sqrt(Math.PI) / 2;
- ctx.moveTo(x - size, y - size);
- ctx.lineTo(x + size, y + size);
- ctx.moveTo(x - size, y + size);
- ctx.lineTo(x + size, y - size);
- }
-
-The parameters are the drawing context, x and y coordinates of the
-center of the point, a radius which corresponds to what the circle
-would have used and whether the call is to draw a shadow (due to
-limited canvas support, shadows are currently faked through extra
-draws). It's good practice to ensure that the area covered by the
-symbol is the same as for the circle with the given radius, this
-ensures that all symbols have approximately the same visual weight.
-
-"shadowSize" is the default size of shadows in pixels. Set it to 0 to
-remove shadows.
-
-The "colors" array specifies a default color theme to get colors for
-the data series from. You can specify as many colors as you like, like
-this:
-
- colors: ["#d18b2c", "#dba255", "#919733"]
-
-If there are more data series than colors, Flot will try to generate
-extra colors by lightening and darkening colors in the theme.
-
-
-Customizing the grid
-====================
-
- grid: {
- show: boolean
- aboveData: boolean
- color: color
- backgroundColor: color/gradient or null
- labelMargin: number
- axisMargin: number
- markings: array of markings or (fn: axes -> array of markings)
- borderWidth: number
- borderColor: color or null
- minBorderMargin: number or null
- clickable: boolean
- hoverable: boolean
- autoHighlight: boolean
- mouseActiveRadius: number
- }
-
-The grid is the thing with the axes and a number of ticks. Many of the
-things in the grid are configured under the individual axes, but not
-all. "color" is the color of the grid itself whereas "backgroundColor"
-specifies the background color inside the grid area, here null means
-that the background is transparent. You can also set a gradient, see
-the gradient documentation below.
-
-You can turn off the whole grid including tick labels by setting
-"show" to false. "aboveData" determines whether the grid is drawn
-above the data or below (below is default).
-
-"labelMargin" is the space in pixels between tick labels and axis
-line, and "axisMargin" is the space in pixels between axes when there
-are two next to each other. Note that you can style the tick labels
-with CSS, e.g. to change the color. They have class "tickLabel".
-
-"borderWidth" is the width of the border around the plot. Set it to 0
-to disable the border. You can also set "borderColor" if you want the
-border to have a different color than the grid lines.
-"minBorderMargin" controls the default minimum margin around the
-border - it's used to make sure that points aren't accidentally
-clipped by the canvas edge so by default the value is computed from
-the point radius.
-
-"markings" is used to draw simple lines and rectangular areas in the
-background of the plot. You can either specify an array of ranges on
-the form { xaxis: { from, to }, yaxis: { from, to } } (with multiple
-axes, you can specify coordinates for other axes instead, e.g. as
-x2axis/x3axis/...) or with a function that returns such an array given
-the axes for the plot in an object as the first parameter.
-
-You can set the color of markings by specifying "color" in the ranges
-object. Here's an example array:
-
- markings: [ { xaxis: { from: 0, to: 2 }, yaxis: { from: 10, to: 10 }, color: "#bb0000" }, ... ]
-
-If you leave out one of the values, that value is assumed to go to the
-border of the plot. So for example if you only specify { xaxis: {
-from: 0, to: 2 } } it means an area that extends from the top to the
-bottom of the plot in the x range 0-2.
-
-A line is drawn if from and to are the same, e.g.
-
- markings: [ { yaxis: { from: 1, to: 1 } }, ... ]
-
-would draw a line parallel to the x axis at y = 1. You can control the
-line width with "lineWidth" in the range object.
-
-An example function that makes vertical stripes might look like this:
-
- markings: function (axes) {
- var markings = [];
- for (var x = Math.floor(axes.xaxis.min); x < axes.xaxis.max; x += 2)
- markings.push({ xaxis: { from: x, to: x + 1 } });
- return markings;
- }
-
-
-If you set "clickable" to true, the plot will listen for click events
-on the plot area and fire a "plotclick" event on the placeholder with
-a position and a nearby data item object as parameters. The coordinates
-are available both in the unit of the axes (not in pixels) and in
-global screen coordinates.
-
-Likewise, if you set "hoverable" to true, the plot will listen for
-mouse move events on the plot area and fire a "plothover" event with
-the same parameters as the "plotclick" event. If "autoHighlight" is
-true (the default), nearby data items are highlighted automatically.
-If needed, you can disable highlighting and control it yourself with
-the highlight/unhighlight plot methods described elsewhere.
-
-You can use "plotclick" and "plothover" events like this:
-
- $.plot($("#placeholder"), [ d ], { grid: { clickable: true } });
-
- $("#placeholder").bind("plotclick", function (event, pos, item) {
- alert("You clicked at " + pos.x + ", " + pos.y);
- // axis coordinates for other axes, if present, are in pos.x2, pos.x3, ...
- // if you need global screen coordinates, they are pos.pageX, pos.pageY
-
- if (item) {
- highlight(item.series, item.datapoint);
- alert("You clicked a point!");
- }
- });
-
-The item object in this example is either null or a nearby object on the form:
-
- item: {
- datapoint: the point, e.g. [0, 2]
- dataIndex: the index of the point in the data array
- series: the series object
- seriesIndex: the index of the series
- pageX, pageY: the global screen coordinates of the point
- }
-
-For instance, if you have specified the data like this
-
- $.plot($("#placeholder"), [ { label: "Foo", data: [[0, 10], [7, 3]] } ], ...);
-
-and the mouse is near the point (7, 3), "datapoint" is [7, 3],
-"dataIndex" will be 1, "series" is a normalized series object with
-among other things the "Foo" label in series.label and the color in
-series.color, and "seriesIndex" is 0. Note that plugins and options
-that transform the data can shift the indexes from what you specified
-in the original data array.
-
-If you use the above events to update some other information and want
-to clear out that info in case the mouse goes away, you'll probably
-also need to listen to "mouseout" events on the placeholder div.
-
-"mouseActiveRadius" specifies how far the mouse can be from an item
-and still activate it. If there are two or more points within this
-radius, Flot chooses the closest item. For bars, the top-most bar
-(from the latest specified data series) is chosen.
-
-If you want to disable interactivity for a specific data series, you
-can set "hoverable" and "clickable" to false in the options for that
-series, like this { data: [...], label: "Foo", clickable: false }.
-
-
-Specifying gradients
-====================
-
-A gradient is specified like this:
-
- { colors: [ color1, color2, ... ] }
-
-For instance, you might specify a background on the grid going from
-black to gray like this:
-
- grid: {
- backgroundColor: { colors: ["#000", "#999"] }
- }
-
-For the series you can specify the gradient as an object that
-specifies the scaling of the brightness and the opacity of the series
-color, e.g.
-
- { colors: [{ opacity: 0.8 }, { brightness: 0.6, opacity: 0.8 } ] }
-
-where the first color simply has its alpha scaled, whereas the second
-is also darkened. For instance, for bars the following makes the bars
-gradually disappear, without outline:
-
- bars: {
- show: true,
- lineWidth: 0,
- fill: true,
- fillColor: { colors: [ { opacity: 0.8 }, { opacity: 0.1 } ] }
- }
-
-Flot currently only supports vertical gradients drawn from top to
-bottom because that's what works with IE.
-
-
-Plot Methods
-------------
-
-The Plot object returned from the plot function has some methods you
-can call:
-
- - highlight(series, datapoint)
-
- Highlight a specific datapoint in the data series. You can either
- specify the actual objects, e.g. if you got them from a
- "plotclick" event, or you can specify the indices, e.g.
- highlight(1, 3) to highlight the fourth point in the second series
- (remember, zero-based indexing).
-
-
- - unhighlight(series, datapoint) or unhighlight()
-
- Remove the highlighting of the point, same parameters as
- highlight.
-
- If you call unhighlight with no parameters, e.g. as
- plot.unhighlight(), all current highlights are removed.
-
-
- - setData(data)
-
- You can use this to reset the data used. Note that axis scaling,
- ticks, legend etc. will not be recomputed (use setupGrid() to do
- that). You'll probably want to call draw() afterwards.
-
- You can use this function to speed up redrawing a small plot if
- you know that the axes won't change. Put in the new data with
- setData(newdata), call draw(), and you're good to go. Note that
- for large datasets, almost all the time is consumed in draw()
- plotting the data so in this case don't bother.
-
-
- - setupGrid()
-
- Recalculate and set axis scaling, ticks, legend etc.
-
- Note that because of the drawing model of the canvas, this
- function will immediately redraw (actually reinsert in the DOM)
- the labels and the legend, but not the actual tick lines because
- they're drawn on the canvas. You need to call draw() to get the
- canvas redrawn.
-
- - draw()
-
- Redraws the plot canvas.
-
- - triggerRedrawOverlay()
-
- Schedules an update of an overlay canvas used for drawing
- interactive things like a selection and point highlights. This
- is mostly useful for writing plugins. The redraw doesn't happen
- immediately, instead a timer is set to catch multiple successive
- redraws (e.g. from a mousemove). You can get to the overlay by
- setting up a drawOverlay hook.
-
- - width()/height()
-
- Gets the width and height of the plotting area inside the grid.
- This is smaller than the canvas or placeholder dimensions as some
- extra space is needed (e.g. for labels).
-
- - offset()
-
- Returns the offset of the plotting area inside the grid relative
- to the document, useful for instance for calculating mouse
- positions (event.pageX/Y minus this offset is the pixel position
- inside the plot).
-
- - pointOffset({ x: xpos, y: ypos })
-
- Returns the calculated offset of the data point at (x, y) in data
- space within the placeholder div. If you are working with multiple axes, you
- can specify the x and y axis references, e.g.
-
- o = pointOffset({ x: xpos, y: ypos, xaxis: 2, yaxis: 3 })
- // o.left and o.top now contains the offset within the div
-
- - resize()
-
- Tells Flot to resize the drawing canvas to the size of the
- placeholder. You need to run setupGrid() and draw() afterwards as
- canvas resizing is a destructive operation. This is used
- internally by the resize plugin.
-
- - shutdown()
-
- Cleans up any event handlers Flot has currently registered. This
- is used internally.
-
-
-There are also some members that let you peek inside the internal
-workings of Flot which is useful in some cases. Note that if you change
-something in the objects returned, you're changing the objects used by
-Flot to keep track of its state, so be careful.
-
- - getData()
-
- Returns an array of the data series currently used in normalized
- form with missing settings filled in according to the global
- options. So for instance to find out what color Flot has assigned
- to the data series, you could do this:
-
- var series = plot.getData();
- for (var i = 0; i < series.length; ++i)
- alert(series[i].color);
-
- A notable other interesting field besides color is datapoints
- which has a field "points" with the normalized data points in a
- flat array (the field "pointsize" is the increment in the flat
- array to get to the next point so for a dataset consisting only of
- (x,y) pairs it would be 2).
-
- - getAxes()
-
- Gets an object with the axes. The axes are returned as the
- attributes of the object, so for instance getAxes().xaxis is the
- x axis.
-
- Various things are stuffed inside an axis object, e.g. you could
- use getAxes().xaxis.ticks to find out what the ticks are for the
- xaxis. Two other useful attributes are p2c and c2p, functions for
- transforming from data point space to the canvas plot space and
- back. Both returns values that are offset with the plot offset.
- Check the Flot source code for the complete set of attributes (or
- output an axis with console.log() and inspect it).
-
- With multiple axes, the extra axes are returned as x2axis, x3axis,
- etc., e.g. getAxes().y2axis is the second y axis. You can check
- y2axis.used to see whether the axis is associated with any data
- points and y2axis.show to see if it is currently shown.
-
- - getPlaceholder()
-
- Returns placeholder that the plot was put into. This can be useful
- for plugins for adding DOM elements or firing events.
-
- - getCanvas()
-
- Returns the canvas used for drawing in case you need to hack on it
- yourself. You'll probably need to get the plot offset too.
-
- - getPlotOffset()
-
- Gets the offset that the grid has within the canvas as an object
- with distances from the canvas edges as "left", "right", "top",
- "bottom". I.e., if you draw a circle on the canvas with the center
- placed at (left, top), its center will be at the top-most, left
- corner of the grid.
-
- - getOptions()
-
- Gets the options for the plot, normalized, with default values
- filled in. You get a reference to actual values used by Flot, so
- if you modify the values in here, Flot will use the new values.
- If you change something, you probably have to call draw() or
- setupGrid() or triggerRedrawOverlay() to see the change.
-
-
-Hooks
-=====
-
-In addition to the public methods, the Plot object also has some hooks
-that can be used to modify the plotting process. You can install a
-callback function at various points in the process, the function then
-gets access to the internal data structures in Flot.
-
-Here's an overview of the phases Flot goes through:
-
- 1. Plugin initialization, parsing options
-
- 2. Constructing the canvases used for drawing
-
- 3. Set data: parsing data specification, calculating colors,
- copying raw data points into internal format,
- normalizing them, finding max/min for axis auto-scaling
-
- 4. Grid setup: calculating axis spacing, ticks, inserting tick
- labels, the legend
-
- 5. Draw: drawing the grid, drawing each of the series in turn
-
- 6. Setting up event handling for interactive features
-
- 7. Responding to events, if any
-
- 8. Shutdown: this mostly happens in case a plot is overwritten
-
-Each hook is simply a function which is put in the appropriate array.
-You can add them through the "hooks" option, and they are also available
-after the plot is constructed as the "hooks" attribute on the returned
-plot object, e.g.
-
- // define a simple draw hook
- function hellohook(plot, canvascontext) { alert("hello!"); };
-
- // pass it in, in an array since we might want to specify several
- var plot = $.plot(placeholder, data, { hooks: { draw: [hellohook] } });
-
- // we can now find it again in plot.hooks.draw[0] unless a plugin
- // has added other hooks
-
-The available hooks are described below. All hook callbacks get the
-plot object as first parameter. You can find some examples of defined
-hooks in the plugins bundled with Flot.
-
- - processOptions [phase 1]
-
- function(plot, options)
-
- Called after Flot has parsed and merged options. Useful in the
- instance where customizations beyond simple merging of default
- values is needed. A plugin might use it to detect that it has been
- enabled and then turn on or off other options.
-
-
- - processRawData [phase 3]
-
- function(plot, series, data, datapoints)
-
- Called before Flot copies and normalizes the raw data for the given
- series. If the function fills in datapoints.points with normalized
- points and sets datapoints.pointsize to the size of the points,
- Flot will skip the copying/normalization step for this series.
-
- In any case, you might be interested in setting datapoints.format,
- an array of objects for specifying how a point is normalized and
- how it interferes with axis scaling.
-
- The default format array for points is something along the lines of:
-
- [
- { x: true, number: true, required: true },
- { y: true, number: true, required: true }
- ]
-
- The first object means that for the first coordinate it should be
- taken into account when scaling the x axis, that it must be a
- number, and that it is required - so if it is null or cannot be
- converted to a number, the whole point will be zeroed out with
- nulls. Beyond these you can also specify "defaultValue", a value to
- use if the coordinate is null. This is for instance handy for bars
- where one can omit the third coordinate (the bottom of the bar)
- which then defaults to 0.
-
-
- - processDatapoints [phase 3]
-
- function(plot, series, datapoints)
-
- Called after normalization of the given series but before finding
- min/max of the data points. This hook is useful for implementing data
- transformations. "datapoints" contains the normalized data points in
- a flat array as datapoints.points with the size of a single point
- given in datapoints.pointsize. Here's a simple transform that
- multiplies all y coordinates by 2:
-
- function multiply(plot, series, datapoints) {
- var points = datapoints.points, ps = datapoints.pointsize;
- for (var i = 0; i < points.length; i += ps)
- points[i + 1] *= 2;
- }
-
- Note that you must leave datapoints in a good condition as Flot
- doesn't check it or do any normalization on it afterwards.
-
-
- - drawSeries [phase 5]
-
- function(plot, canvascontext, series)
-
- Hook for custom drawing of a single series. Called just before the
- standard drawing routine has been called in the loop that draws
- each series.
-
-
- - draw [phase 5]
-
- function(plot, canvascontext)
-
- Hook for drawing on the canvas. Called after the grid is drawn
- (unless it's disabled or grid.aboveData is set) and the series have
- been plotted (in case any points, lines or bars have been turned
- on). For examples of how to draw things, look at the source code.
-
-
- - bindEvents [phase 6]
-
- function(plot, eventHolder)
-
- Called after Flot has setup its event handlers. Should set any
- necessary event handlers on eventHolder, a jQuery object with the
- canvas, e.g.
-
- function (plot, eventHolder) {
- eventHolder.mousedown(function (e) {
- alert("You pressed the mouse at " + e.pageX + " " + e.pageY);
- });
- }
-
- Interesting events include click, mousemove, mouseup/down. You can
- use all jQuery events. Usually, the event handlers will update the
- state by drawing something (add a drawOverlay hook and call
- triggerRedrawOverlay) or firing an externally visible event for
- user code. See the crosshair plugin for an example.
-
- Currently, eventHolder actually contains both the static canvas
- used for the plot itself and the overlay canvas used for
- interactive features because some versions of IE get the stacking
- order wrong. The hook only gets one event, though (either for the
- overlay or for the static canvas).
-
- Note that custom plot events generated by Flot are not generated on
- eventHolder, but on the div placeholder supplied as the first
- argument to the plot call. You can get that with
- plot.getPlaceholder() - that's probably also the one you should use
- if you need to fire a custom event.
-
-
- - drawOverlay [phase 7]
-
- function (plot, canvascontext)
-
- The drawOverlay hook is used for interactive things that need a
- canvas to draw on. The model currently used by Flot works the way
- that an extra overlay canvas is positioned on top of the static
- canvas. This overlay is cleared and then completely redrawn
- whenever something interesting happens. This hook is called when
- the overlay canvas is to be redrawn.
-
- "canvascontext" is the 2D context of the overlay canvas. You can
- use this to draw things. You'll most likely need some of the
- metrics computed by Flot, e.g. plot.width()/plot.height(). See the
- crosshair plugin for an example.
-
-
- - shutdown [phase 8]
-
- function (plot, eventHolder)
-
- Run when plot.shutdown() is called, which usually only happens in
- case a plot is overwritten by a new plot. If you're writing a
- plugin that adds extra DOM elements or event handlers, you should
- add a callback to clean up after you. Take a look at the section in
- PLUGINS.txt for more info.
-
-
-Plugins
--------
-
-Plugins extend the functionality of Flot. To use a plugin, simply
-include its Javascript file after Flot in the HTML page.
-
-If you're worried about download size/latency, you can concatenate all
-the plugins you use, and Flot itself for that matter, into one big file
-(make sure you get the order right), then optionally run it through a
-Javascript minifier such as YUI Compressor.
-
-Here's a brief explanation of how the plugin plumbings work:
-
-Each plugin registers itself in the global array $.plot.plugins. When
-you make a new plot object with $.plot, Flot goes through this array
-calling the "init" function of each plugin and merging default options
-from the "option" attribute of the plugin. The init function gets a
-reference to the plot object created and uses this to register hooks
-and add new public methods if needed.
-
-See the PLUGINS.txt file for details on how to write a plugin. As the
-above description hints, it's actually pretty easy.
-
-
-Version number
---------------
-
-The version number of Flot is available in $.plot.version.
diff --git a/airtime_mvc/public/js/flot/FAQ.txt b/airtime_mvc/public/js/flot/FAQ.txt
deleted file mode 100644
index e02b76188..000000000
--- a/airtime_mvc/public/js/flot/FAQ.txt
+++ /dev/null
@@ -1,76 +0,0 @@
-Frequently asked questions
---------------------------
-
-Q: How much data can Flot cope with?
-
-A: Flot will happily draw everything you send to it so the answer
-depends on the browser. The excanvas emulation used for IE (built with
-VML) makes IE by far the slowest browser so be sure to test with that
-if IE users are in your target group.
-
-1000 points is not a problem, but as soon as you start having more
-points than the pixel width, you should probably start thinking about
-downsampling/aggregation as this is near the resolution limit of the
-chart anyway. If you downsample server-side, you also save bandwidth.
-
-
-Q: Flot isn't working when I'm using JSON data as source!
-
-A: Actually, Flot loves JSON data, you just got the format wrong.
-Double check that you're not inputting strings instead of numbers,
-like [["0", "-2.13"], ["5", "4.3"]]. This is most common mistake, and
-the error might not show up immediately because Javascript can do some
-conversion automatically.
-
-
-Q: Can I export the graph?
-
-A: This is a limitation of the canvas technology. There's a hook in
-the canvas object for getting an image out, but you won't get the tick
-labels. And it's not likely to be supported by IE. At this point, your
-best bet is probably taking a screenshot, e.g. with PrtScn.
-
-
-Q: The bars are all tiny in time mode?
-
-A: It's not really possible to determine the bar width automatically.
-So you have to set the width with the barWidth option which is NOT in
-pixels, but in the units of the x axis (or the y axis for horizontal
-bars). For time mode that's milliseconds so the default value of 1
-makes the bars 1 millisecond wide.
-
-
-Q: Can I use Flot with libraries like Mootools or Prototype?
-
-A: Yes, Flot supports it out of the box and it's easy! Just use jQuery
-instead of $, e.g. call jQuery.plot instead of $.plot and use
-jQuery(something) instead of $(something). As a convenience, you can
-put in a DOM element for the graph placeholder where the examples and
-the API documentation are using jQuery objects.
-
-Depending on how you include jQuery, you may have to add one line of
-code to prevent jQuery from overwriting functions from the other
-libraries, see the documentation in jQuery ("Using jQuery with other
-libraries") for details.
-
-
-Q: Flot doesn't work with [insert name of Javascript UI framework]!
-
-A: The only non-standard thing used by Flot is the canvas tag;
-otherwise it is simply a series of absolute positioned divs within the
-placeholder tag you put in. If this is not working, it's probably
-because the framework you're using is doing something weird with the
-DOM, or you're using it the wrong way.
-
-A common problem is that there's display:none on a container until the
-user does something. Many tab widgets work this way, and there's
-nothing wrong with it - you just can't call Flot inside a display:none
-container as explained in the README so you need to hold off the Flot
-call until the container is actually displayed (or use
-visibility:hidden instead of display:none or move the container
-off-screen).
-
-If you find there's a specific thing we can do to Flot to help, feel
-free to submit a bug report. Otherwise, you're welcome to ask for help
-on the forum/mailing list, but please don't submit a bug report to
-Flot.
diff --git a/airtime_mvc/public/js/flot/NEWS.txt b/airtime_mvc/public/js/flot/NEWS.txt
deleted file mode 100644
index 5f8e1a0c0..000000000
--- a/airtime_mvc/public/js/flot/NEWS.txt
+++ /dev/null
@@ -1,508 +0,0 @@
-Flot 0.7
---------
-
-API changes:
-
-Multiple axes support. Code using dual axes should be changed from
-using x2axis/y2axis in the options to using an array (although
-backwards-compatibility hooks are in place). For instance,
-
- {
- xaxis: { ... }, x2axis: { ... },
- yaxis: { ... }, y2axis: { ... }
- }
-
-becomes
-
- {
- xaxes: [ { ... }, { ... } ],
- yaxes: [ { ... }, { ... } ]
- }
-
-Note that if you're just using one axis, continue to use the
-xaxis/yaxis directly (it now sets the default settings for the
-arrays). Plugins touching the axes must be ported to take the extra
-axes into account, check the source to see some examples.
-
-A related change is that the visibility of axes is now auto-detected.
-So if you were relying on an axis to show up even without any data in
-the chart, you now need to set the axis "show" option explicitly.
-
-"tickColor" on the grid options is now deprecated in favour of a
-corresponding option on the axes, so { grid: { tickColor: "#000" }}
-becomes { xaxis: { tickColor: "#000"}, yaxis: { tickColor: "#000"} },
-but if you just configure a base color Flot will now autogenerate a
-tick color by adding transparency. Backwards-compatibility hooks are
-in place.
-
-Final note: now that IE 9 is coming out with canvas support, you may
-want to adapt the excanvas include to skip loading it in IE 9 (the
-examples have been adapted thanks to Ryley Breiddal). An alternative
-to excanvas using Flash has also surfaced, if your graphs are slow in
-IE, you may want to give it a spin:
-
- http://code.google.com/p/flashcanvas/
-
-
-Changes:
-
-- Support for specifying a bottom for each point for line charts when
- filling them, this means that an arbitrary bottom can be used
- instead of just the x axis (based on patches patiently provided by
- Roman V. Prikhodchenko).
-- New fillbetween plugin that can compute a bottom for a series from
- another series, useful for filling areas between lines (see new
- example percentiles.html for a use case).
-- More predictable handling of gaps for the stacking plugin, now all
- undefined ranges are skipped.
-- Stacking plugin can stack horizontal bar charts.
-- Navigate plugin now redraws the plot while panning instead of only
- after the fact (can be disabled by setting the pan.frameRate option
- to null), raised by lastthemy (issue 235).
-- Date formatter now accepts %0m and %0d to get a zero-padded month or
- day (issue raised by Maximillian Dornseif).
-- Revamped internals to support an unlimited number of axes, not just
- dual (sponsored by Flight Data Services,
- www.flightdataservices.com).
-- New setting on axes, "tickLength", to control the size of ticks or
- turn them off without turning off the labels.
-- Axis labels are now put in container divs with classes, for instance
- labels in the x axes can be reached via ".xAxis .tickLabel".
-- Support for setting the color of an axis (sponsored by Flight Data
- Services, www.flightdataservices.com).
-- Tick color is now auto-generated as the base color with some
- transparency (unless you override it).
-- Support for aligning ticks in the axes with "alignTicksWithAxis" to
- ensure that they appear next to each other rather than in between,
- at the expense of possibly awkward tick steps (sponsored by Flight
- Data Services, www.flightdataservices.com).
-- Support for customizing the point type through a callback when
- plotting points and new symbol plugin with some predefined point
- types (sponsored by Utility Data Corporation).
-- Resize plugin for automatically redrawing when the placeholder
- changes size, e.g. on window resizes (sponsored by Novus Partners).
- A resize() method has been added to plot object facilitate this.
-- Support Infinity/-Infinity for plotting asymptotes by hacking it
- into +/-Number.MAX_VALUE (reported by rabaea.mircea).
-- Support for restricting navigate plugin to not pan/zoom an axis (based
- on patch by kkaefer).
-- Support for providing the drag cursor for the navigate plugin as an
- option (based on patch by Kelly T. Moore).
-- Options for controlling whether an axis is shown or not (suggestion
- by Timo Tuominen) and whether to reserve space for it even if it
- isn't shown.
-- New attribute $.plot.version with the Flot version as a string.
-- The version comment is now included in the minified jquery.flot.min.js.
-- New options.grid.minBorderMargin for adjusting the minimum margin
- provided around the border (based on patch by corani, issue 188).
-- Refactor replot behaviour so Flot tries to reuse the existing
- canvas, adding shutdown() methods to the plot (based on patch by
- Ryley Breiddal, issue 269). This prevents a memory leak in Chrome
- and hopefully makes replotting faster for those who are using $.plot
- instead of .setData()/.draw(). Also update jQuery to 1.5.1 to
- prevent IE leaks fixed in jQuery.
-- New real-time line chart example.
-
-- New hooks: drawSeries, shutdown
-
-Bug fixes:
-
-- Fixed problem with findNearbyItem and bars on top of each other
- (reported by ragingchikn, issue 242).
-- Fixed problem with ticks and the border (based on patch from
- ultimatehustler69, issue 236).
-- Fixed problem with plugins adding options to the series objects.
-- Fixed a problem introduced in 0.6 with specifying a gradient with {
- brightness: x, opacity: y }.
-- Don't use $.browser.msie, check for getContext on the created canvas
- element instead and try to use excanvas if it's not found (fixes IE
- 9 compatibility).
-- highlight(s, index) was looking up the point in the original s.data
- instead of in the computed datapoints array, which breaks with
- plugins that modify the datapoints (such as the stacking plugin).
- Issue 316 reported by curlypaul924.
-- More robust handling of axis from data passed in from getData()
- (problem reported by Morgan).
-- Fixed problem with turning off bar outline (issue 253, fix by Jordi
- Castells).
-- Check the selection passed into setSelection in the selection
- plugin, to guard against errors when synchronizing plots (fix by Lau
- Bech Lauritzen).
-- Fix bug in crosshair code with mouseout resetting the crosshair even
- if it is locked (fix by Lau Bech Lauritzen and Banko Adam).
-- Fix bug with points plotting using line width from lines rather than
- points.
-- Fix bug with passing non-array 0 data (for plugins that don't expect
- arrays, patch by vpapp1).
-- Fix errors in JSON in examples so they work with jQuery 1.4.2
- (fix reported by honestbleeps, issue 357).
-- Fix bug with tooltip in interacting.html, this makes the tooltip
- much smoother (fix by bdkahn). Fix related bug inside highlighting
- handler in Flot.
-- Use closure trick to make inline colorhelpers plugin respect
- jQuery.noConflict(true), renaming the global jQuery object (reported
- by Nick Stielau).
-- Listen for mouseleave events and fire a plothover event with empty
- item when it occurs to drop highlights when the mouse leaves the
- plot (reported by by outspirit).
-- Fix bug with using aboveData with a background (reported by
- amitayd).
-- Fix possible excanvas leak (report and suggested fix by tom9729).
-- Fix bug with backwards compatibility for shadowSize = 0 (report and
- suggested fix by aspinak).
-- Adapt examples to skip loading excanvas (fix by Ryley Breiddal).
-- Fix bug that prevent a simple f(x) = -x transform from working
- correctly (fix by Mike, issue 263).
-- Fix bug in restoring cursor in navigate plugin (reported by Matteo
- Gattanini, issue 395).
-- Fix bug in picking items when transform/inverseTransform is in use
- (reported by Ofri Raviv, and patches and analysis by Jan and Tom
- Paton, issue 334 and 467).
-- Fix problem with unaligned ticks and hover/click events caused by
- padding on the placeholder by hardcoding the placeholder padding to
- 0 (reported by adityadineshsaxena, Matt Sommer, Daniel Atos and some
- other people, issue 301).
-- Update colorhelpers plugin to avoid dying when trying to parse an
- invalid string (reported by cadavor, issue 483).
-
-
-Flot 0.6
---------
-
-API changes:
-
-1. Selection support has been moved to a plugin. Thus if you're
-passing selection: { mode: something }, you MUST include the file
-jquery.flot.selection.js after jquery.flot.js. This reduces the size
-of base Flot and makes it easier to customize the selection as well as
-improving code clarity. The change is based on a patch from andershol.
-
-2. In the global options specified in the $.plot command,
-"lines", "points", "bars" and "shadowSize" have been moved to a
-sub-object called "series", i.e.
-
- $.plot(placeholder, data, { lines: { show: true }})
-
-should be changed to
-
- $.plot(placeholder, data, { series: { lines: { show: true }}})
-
-All future series-specific options will go into this sub-object to
-simplify plugin writing. Backward-compatibility code is in place, so
-old code should not break.
-
-3. "plothover" no longer provides the original data point, but instead
-a normalized one, since there may be no corresponding original point.
-
-4. Due to a bug in previous versions of jQuery, you now need at least
-jQuery 1.2.6. But if you can, try jQuery 1.3.2 as it got some
-improvements in event handling speed.
-
-
-Changes:
-
-- Added support for disabling interactivity for specific data series
- (request from Ronald Schouten and Steve Upton).
-
-- Flot now calls $() on the placeholder and optional legend container
- passed in so you can specify DOM elements or CSS expressions to make
- it easier to use Flot with libraries like Prototype or Mootools or
- through raw JSON from Ajax responses.
-
-- A new "plotselecting" event is now emitted while the user is making
- a selection.
-
-- The "plothover" event is now emitted immediately instead of at most
- 10 times per second, you'll have to put in a setTimeout yourself if
- you're doing something really expensive on this event.
-
-- The built-in date formatter can now be accessed as
- $.plot.formatDate(...) (suggestion by Matt Manela) and even
- replaced.
-
-- Added "borderColor" option to the grid (patch from Amaury Chamayou
- and patch from Mike R. Williamson).
-
-- Added support for gradient backgrounds for the grid, take a look at
- the "setting options" example (based on patch from Amaury Chamayou,
- issue 90).
-
-- Gradient bars (suggestion by stefpet).
-
-- Added a "plotunselected" event which is triggered when the selection
- is removed, see "selection" example (suggestion by Meda Ugo);
-
-- The option legend.margin can now specify horizontal and vertical
- margins independently (suggestion by someone who's annoyed).
-
-- Data passed into Flot is now copied to a new canonical format to
- enable further processing before it hits the drawing routines. As a
- side-effect, this should make Flot more robust in the face of bad
- data (and fixes issue 112).
-
-- Step-wise charting: line charts have a new option "steps" that when
- set to true connects the points with horizontal/vertical steps
- instead of diagonal lines.
-
-- The legend labelFormatter now passes the series in addition to just
- the label (suggestion by Vincent Lemeltier).
-
-- Horizontal bars (based on patch by Jason LeBrun).
-
-- Support for partial bars by specifying a third coordinate, i.e. they
- don't have to start from the axis. This can be used to make stacked
- bars.
-
-- New option to disable the (grid.show).
-
-- Added pointOffset method for converting a point in data space to an
- offset within the placeholder.
-
-- Plugin system: register an init method in the $.flot.plugins array
- to get started, see PLUGINS.txt for details on how to write plugins
- (it's easy). There are also some extra methods to enable access to
- internal state.
-
-- Hooks: you can register functions that are called while Flot is
- crunching the data and doing the plot. This can be used to modify
- Flot without changing the source, useful for writing plugins. Some
- hooks are defined, more are likely to come.
-
-- Threshold plugin: you can set a threshold and a color, and the data
- points below that threshold will then get the color. Useful for
- marking data below 0, for instance.
-
-- Stack plugin: you can specify a stack key for each series to have
- them summed. This is useful for drawing additive/cumulative graphs
- with bars and (currently unfilled) lines.
-
-- Crosshairs plugin: trace the mouse position on the axes, enable with
- crosshair: { mode: "x"} (see the new tracking example for a use).
-
-- Image plugin: plot prerendered images.
-
-- Navigation plugin for panning and zooming a plot.
-
-- More configurable grid.
-
-- Axis transformation support, useful for non-linear plots, e.g. log
- axes and compressed time axes (like omitting weekends).
-
-- Support for twelve-hour date formatting (patch by Forrest Aldridge).
-
-- The color parsing code in Flot has been cleaned up and split out so
- it's now available as a separate jQuery plugin. It's included inline
- in the Flot source to make dependency managing easier. This also
- makes it really easy to use the color helpers in Flot plugins.
-
-Bug fixes:
-
-- Fixed two corner-case bugs when drawing filled curves (report and
- analysis by Joshua Varner).
-- Fix auto-adjustment code when setting min to 0 for an axis where the
- dataset is completely flat on that axis (report by chovy).
-- Fixed a bug with passing in data from getData to setData when the
- secondary axes are used (issue 65, reported by nperelman).
-- Fixed so that it is possible to turn lines off when no other chart
- type is shown (based on problem reported by Glenn Vanderburg), and
- fixed so that setting lineWidth to 0 also hides the shadow (based on
- problem reported by Sergio Nunes).
-- Updated mousemove position expression to the latest from jQuery (bug
- reported by meyuchas).
-- Use CSS borders instead of background in legend (fix printing issue 25
- and 45).
-- Explicitly convert axis min/max to numbers.
-- Fixed a bug with drawing marking lines with different colors
- (reported by Khurram).
-- Fixed a bug with returning y2 values in the selection event (fix
- by exists, issue 75).
-- Only set position relative on placeholder if it hasn't already a
- position different from static (reported by kyberneticist, issue 95).
-- Don't round markings to prevent sub-pixel problems (reported by Dan
- Lipsitt).
-- Make the grid border act similarly to a regular CSS border, i.e.
- prevent it from overlapping the plot itself. This also fixes a
- problem with anti-aliasing when the width is 1 pixel (reported by
- Anthony Ettinger).
-- Imported version 3 of excanvas and fixed two issues with the newer
- version. Hopefully, this will make Flot work with IE8 (nudge by
- Fabien Menager, further analysis by Booink, issue 133).
-- Changed the shadow code for lines to hopefully look a bit better
- with vertical lines.
-- Round tick positions to avoid possible problems with fractions
- (suggestion by Fred, issue 130).
-- Made the heuristic for determining how many ticks to aim for a bit
- smarter.
-- Fix for uneven axis margins (report and patch by Paul Kienzle) and
- snapping to ticks (concurrent report and patch by lifthrasiir).
-- Fixed bug with slicing in findNearbyItems (patch by zollman).
-- Make heuristic for x axis label widths more dynamic (patch by
- rickinhethuis).
-- Make sure points on top take precedence when finding nearby points
- when hovering (reported by didroe, issue 224).
-
-Flot 0.5
---------
-
-Backwards API change summary: Timestamps are now in UTC. Also
-"selected" event -> becomes "plotselected" with new data, the
-parameters for setSelection are now different (but backwards
-compatibility hooks are in place), coloredAreas becomes markings with
-a new interface (but backwards compatibility hooks are in place).
-
-
-Interactivity: added a new "plothover" event and this and the
-"plotclick" event now returns the closest data item (based on patch by
-/david, patch by Mark Byers for bar support). See the revamped
-"interacting with the data" example for some hints on what you can do.
-
-Highlighting: you can now highlight points and datapoints are
-autohighlighted when you hover over them (if hovering is turned on).
-
-Support for dual axis has been added (based on patch by someone who's
-annoyed and /david). For each data series you can specify which axes
-it belongs to, and there are two more axes, x2axis and y2axis, to
-customize. This affects the "selected" event which has been renamed to
-"plotselected" and spews out { xaxis: { from: -10, to: 20 } ... },
-setSelection in which the parameters are on a new form (backwards
-compatible hooks are in place so old code shouldn't break) and
-markings (formerly coloredAreas).
-
-Timestamps in time mode are now displayed according to
-UTC instead of the time zone of the visitor. This affects the way the
-timestamps should be input; you'll probably have to offset the
-timestamps according to your local time zone. It also affects any
-custom date handling code (which basically now should use the
-equivalent UTC date mehods, e.g. .setUTCMonth() instead of
-.setMonth().
-
-Added support for specifying the size of tick labels (axis.labelWidth,
-axis.labelHeight). Useful for specifying a max label size to keep
-multiple plots aligned.
-
-Markings, previously coloredAreas, are now specified as ranges on the
-axes, like { xaxis: { from: 0, to: 10 }}. Furthermore with markings
-you can now draw horizontal/vertical lines by setting from and to to
-the same coordinate (idea from line support patch by by Ryan Funduk).
-
-The "fill" option can now be a number that specifies the opacity of
-the fill.
-
-You can now specify a coordinate as null (like [2, null]) and Flot
-will take the other coordinate into account when scaling the axes
-(based on patch by joebno).
-
-New option for bars "align". Set it to "center" to center the bars on
-the value they represent.
-
-setSelection now takes a second parameter which you can use to prevent
-the method from firing the "plotselected" handler.
-
-Using the "container" option in legend now overwrites the container
-element instead of just appending to it (fixes infinite legend bug,
-reported by several people, fix by Brad Dewey).
-
-Fixed a bug in calculating spacing around the plot (reported by
-timothytoe). Fixed a bug in finding max values for all-negative data
-sets. Prevent the possibility of eternal looping in tick calculations.
-Fixed a bug when borderWidth is set to 0 (reported by
-Rob/sanchothefat). Fixed a bug with drawing bars extending below 0
-(reported by James Hewitt, patch by Ryan Funduk). Fixed a
-bug with line widths of bars (reported by MikeM). Fixed a bug with
-'nw' and 'sw' legend positions. Improved the handling of axis
-auto-scaling with bars. Fixed a bug with multi-line x-axis tick
-labels (reported by Luca Ciano). IE-fix help by Savage Zhang.
-
-
-Flot 0.4
---------
-
-API changes: deprecated axis.noTicks in favor of just specifying the
-number as axis.ticks. So "xaxis: { noTicks: 10 }" becomes
-"xaxis: { ticks: 10 }"
-
-Time series support. Specify axis.mode: "time", put in Javascript
-timestamps as data, and Flot will automatically spit out sensible
-ticks. Take a look at the two new examples. The format can be
-customized with axis.timeformat and axis.monthNames, or if that fails
-with axis.tickFormatter.
-
-Support for colored background areas via grid.coloredAreas. Specify an
-array of { x1, y1, x2, y2 } objects or a function that returns these
-given { xmin, xmax, ymin, ymax }.
-
-More members on the plot object (report by Chris Davies and others).
-"getData" for inspecting the assigned settings on data series (e.g.
-color) and "setData", "setupGrid" and "draw" for updating the contents
-without a total replot.
-
-The default number of ticks to aim for is now dependent on the size of
-the plot in pixels. Support for customizing tick interval sizes
-directly with axis.minTickSize and axis.tickSize.
-
-Cleaned up the automatic axis scaling algorithm and fixed how it
-interacts with ticks. Also fixed a couple of tick-related corner case
-bugs (one reported by mainstreetmark, another reported by timothytoe).
-
-The option axis.tickFormatter now takes a function with two
-parameters, the second parameter is an optional object with
-information about the axis. It has min, max, tickDecimals, tickSize.
-
-Added support for segmented lines (based on patch from Michael
-MacDonald) and for ignoring null and bad values (suggestion from Nick
-Konidaris and joshwaihi).
-
-Added support for changing the border width (joebno and safoo).
-Label colors can be changed via CSS by selecting the tickLabel class.
-
-Fixed a bug in handling single-item bar series (reported by Emil
-Filipov). Fixed erratic behaviour when interacting with the plot
-with IE 7 (reported by Lau Bech Lauritzen). Prevent IE/Safari text
-selection when selecting stuff on the canvas.
-
-
-
-Flot 0.3
---------
-
-This is mostly a quick-fix release because jquery.js wasn't included
-in the previous zip/tarball.
-
-Support clicking on the plot. Turn it on with grid: { clickable: true },
-then you get a "plotclick" event on the graph placeholder with the
-position in units of the plot.
-
-Fixed a bug in dealing with data where min = max, thanks to Michael
-Messinides.
-
-Include jquery.js in the zip/tarball.
-
-
-Flot 0.2
---------
-
-Added support for putting a background behind the default legend. The
-default is the partly transparent background color. Added
-backgroundColor and backgroundOpacity to the legend options to control
-this.
-
-The ticks options can now be a callback function that takes one
-parameter, an object with the attributes min and max. The function
-should return a ticks array.
-
-Added labelFormatter option in legend, useful for turning the legend
-labels into links.
-
-Fixed a couple of bugs.
-
-The API should now be fully documented.
-
-Patch from Guy Fraser to make parts of the code smaller.
-
-API changes: Moved labelMargin option to grid from x/yaxis.
-
-
-Flot 0.1
---------
-
-First public release.
diff --git a/airtime_mvc/public/js/flot/PLUGINS.txt b/airtime_mvc/public/js/flot/PLUGINS.txt
deleted file mode 100644
index af3d90be5..000000000
--- a/airtime_mvc/public/js/flot/PLUGINS.txt
+++ /dev/null
@@ -1,137 +0,0 @@
-Writing plugins
----------------
-
-All you need to do to make a new plugin is creating an init function
-and a set of options (if needed), stuffing it into an object and
-putting it in the $.plot.plugins array. For example:
-
- function myCoolPluginInit(plot) {
- plot.coolstring = "Hello!";
- };
-
- $.plot.plugins.push({ init: myCoolPluginInit, options: { ... } });
-
- // if $.plot is called, it will return a plot object with the
- // attribute "coolstring"
-
-Now, given that the plugin might run in many different places, it's
-a good idea to avoid leaking names. The usual trick here is wrap the
-above lines in an anonymous function which is called immediately, like
-this: (function () { inner code ... })(). To make it even more robust
-in case $ is not bound to jQuery but some other Javascript library, we
-can write it as
-
- (function ($) {
- // plugin definition
- // ...
- })(jQuery);
-
-There's a complete example below, but you should also check out the
-plugins bundled with Flot.
-
-
-Complete example
-----------------
-
-Here is a simple debug plugin which alerts each of the series in the
-plot. It has a single option that control whether it is enabled and
-how much info to output:
-
- (function ($) {
- function init(plot) {
- var debugLevel = 1;
-
- function checkDebugEnabled(plot, options) {
- if (options.debug) {
- debugLevel = options.debug;
-
- plot.hooks.processDatapoints.push(alertSeries);
- }
- }
-
- function alertSeries(plot, series, datapoints) {
- var msg = "series " + series.label;
- if (debugLevel > 1)
- msg += " with " + series.data.length + " points";
- alert(msg);
- }
-
- plot.hooks.processOptions.push(checkDebugEnabled);
- }
-
- var options = { debug: 0 };
-
- $.plot.plugins.push({
- init: init,
- options: options,
- name: "simpledebug",
- version: "0.1"
- });
- })(jQuery);
-
-We also define "name" and "version". It's not used by Flot, but might
-be helpful for other plugins in resolving dependencies.
-
-Put the above in a file named "jquery.flot.debug.js", include it in an
-HTML page and then it can be used with:
-
- $.plot($("#placeholder"), [...], { debug: 2 });
-
-This simple plugin illustrates a couple of points:
-
- - It uses the anonymous function trick to avoid name pollution.
- - It can be enabled/disabled through an option.
- - Variables in the init function can be used to store plot-specific
- state between the hooks.
-
-The two last points are important because there may be multiple plots
-on the same page, and you'd want to make sure they are not mixed up.
-
-
-Shutting down a plugin
-----------------------
-
-Each plot object has a shutdown hook which is run when plot.shutdown()
-is called. This usually mostly happens in case another plot is made on
-top of an existing one.
-
-The purpose of the hook is to give you a chance to unbind any event
-handlers you've registered and remove any extra DOM things you've
-inserted.
-
-The problem with event handlers is that you can have registered a
-handler which is run in some point in the future, e.g. with
-setTimeout(). Meanwhile, the plot may have been shutdown and removed,
-but because your event handler is still referencing it, it can't be
-garbage collected yet, and worse, if your handler eventually runs, it
-may overwrite stuff on a completely different plot.
-
-
-Some hints on the options
--------------------------
-
-Plugins should always support appropriate options to enable/disable
-them because the plugin user may have several plots on the same page
-where only one should use the plugin. In most cases it's probably a
-good idea if the plugin is turned off rather than on per default, just
-like most of the powerful features in Flot.
-
-If the plugin needs options that are specific to each series, like the
-points or lines options in core Flot, you can put them in "series" in
-the options object, e.g.
-
- var options = {
- series: {
- downsample: {
- algorithm: null,
- maxpoints: 1000
- }
- }
- }
-
-Then they will be copied by Flot into each series, providing default
-values in case none are specified.
-
-Think hard and long about naming the options. These names are going to
-be public API, and code is going to depend on them if the plugin is
-successful.
diff --git a/airtime_mvc/public/js/flot/excanvas.js b/airtime_mvc/public/js/flot/excanvas.js
deleted file mode 100644
index c40d6f701..000000000
--- a/airtime_mvc/public/js/flot/excanvas.js
+++ /dev/null
@@ -1,1427 +0,0 @@
-// Copyright 2006 Google Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-
-// Known Issues:
-//
-// * Patterns only support repeat.
-// * Radial gradient are not implemented. The VML version of these look very
-// different from the canvas one.
-// * Clipping paths are not implemented.
-// * Coordsize. The width and height attribute have higher priority than the
-// width and height style values which isn't correct.
-// * Painting mode isn't implemented.
-// * Canvas width/height should is using content-box by default. IE in
-// Quirks mode will draw the canvas using border-box. Either change your
-// doctype to HTML5
-// (http://www.whatwg.org/specs/web-apps/current-work/#the-doctype)
-// or use Box Sizing Behavior from WebFX
-// (http://webfx.eae.net/dhtml/boxsizing/boxsizing.html)
-// * Non uniform scaling does not correctly scale strokes.
-// * Filling very large shapes (above 5000 points) is buggy.
-// * Optimize. There is always room for speed improvements.
-
-// Only add this code if we do not already have a canvas implementation
-if (!document.createElement('canvas').getContext) {
-
-(function() {
-
- // alias some functions to make (compiled) code shorter
- var m = Math;
- var mr = m.round;
- var ms = m.sin;
- var mc = m.cos;
- var abs = m.abs;
- var sqrt = m.sqrt;
-
- // this is used for sub pixel precision
- var Z = 10;
- var Z2 = Z / 2;
-
- /**
- * This funtion is assigned to the Print view