Merge branch '2.4.x' into 2.4.x-saas
This commit is contained in:
commit
254d3b8950
30
CREDITS
30
CREDITS
|
@ -2,6 +2,36 @@
|
|||
CREDITS
|
||||
=======
|
||||
|
||||
Version 2.4.0
|
||||
-------------
|
||||
Martin Konecny (martin.konecny@sourcefabric.org)
|
||||
Role: Developer Team Lead
|
||||
|
||||
Denise Rigato (denise.rigato@sourcefabric.org)
|
||||
Role: Software Developer
|
||||
|
||||
Naomi Aro (naomi.aro@sourcefabric.org)
|
||||
Role: Software Developer
|
||||
|
||||
Cliff Wang (cliff.wang@sourcefabric.org)
|
||||
Role: QA
|
||||
|
||||
Daniel James (daniel.james@sourcefabric.org)
|
||||
Role: Documentor & QA
|
||||
|
||||
Localizations:
|
||||
|
||||
Albert (French)
|
||||
Helmut Müller, Christoph Rombach, Micz Flor, Silvio Mende (German)
|
||||
Claudia Cruz (Spanish)
|
||||
Katerina Michailidis (Greek)
|
||||
Erich Pöttinger (Austrian)
|
||||
Luba Sirina (Russian)
|
||||
Luciano De Fazio (Brazilian Portuguese)
|
||||
Sebastian Matuszewski (Polish)
|
||||
Staff Pingu (Italian)
|
||||
Magyar Zsolt (Hungarian)
|
||||
|
||||
Version 2.3.0/2.3.1
|
||||
-------------
|
||||
Martin Konecny (martin.konecny@sourcefabric.org)
|
||||
|
|
|
@ -26,6 +26,7 @@ class Config {
|
|||
$CC_CONFIG['webServerUser'] = $values['general']['web_server_user'];
|
||||
$CC_CONFIG['rabbitmq'] = $values['rabbitmq'];
|
||||
|
||||
$CC_CONFIG['baseDir'] = $values['general']['base_dir'];
|
||||
$CC_CONFIG['baseUrl'] = $values['general']['base_url'];
|
||||
$CC_CONFIG['basePort'] = $values['general']['base_port'];
|
||||
$CC_CONFIG['phpDir'] = $values['general']['airtime_dir'];
|
||||
|
|
|
@ -510,7 +510,7 @@ class Application_Form_SmartBlockCriteria extends Zend_Form_SubForm
|
|||
}
|
||||
} elseif ($column->getType() == PropelColumnTypes::TIMESTAMP) {
|
||||
if (!preg_match("/(\d{4})-(\d{2})-(\d{2})/", $d['sp_criteria_value'])) {
|
||||
$element->addError(_("The value should be in timestamp format(eg. 0000-00-00 or 00-00-00 00:00:00)"));
|
||||
$element->addError(_("The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)"));
|
||||
$isValid = false;
|
||||
} else {
|
||||
$result = Application_Common_DateHelper::checkDateTimeRangeForSQL($d['sp_criteria_value']);
|
||||
|
@ -523,7 +523,7 @@ class Application_Form_SmartBlockCriteria extends Zend_Form_SubForm
|
|||
|
||||
if (isset($d['sp_criteria_extra'])) {
|
||||
if (!preg_match("/(\d{4})-(\d{2})-(\d{2})/", $d['sp_criteria_extra'])) {
|
||||
$element->addError(_("The value should be in timestamp format(eg. 0000-00-00 or 00-00-00 00:00:00)"));
|
||||
$element->addError(_("The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)"));
|
||||
$isValid = false;
|
||||
} else {
|
||||
$result = Application_Common_DateHelper::checkDateTimeRangeForSQL($d['sp_criteria_extra']);
|
||||
|
|
|
@ -501,44 +501,25 @@ SQL;
|
|||
}
|
||||
|
||||
/**
|
||||
* Get the URL to access this file using the server name/address that
|
||||
* this PHP script was invoked through.
|
||||
* Get the URL to access this file
|
||||
*/
|
||||
public function getFileUrl()
|
||||
{
|
||||
$serverName = $_SERVER['SERVER_NAME'];
|
||||
$serverPort = $_SERVER['SERVER_PORT'];
|
||||
|
||||
return $this->constructGetFileUrl($serverName, $serverPort);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the URL to access this file using the server name/address that
|
||||
* is specified in the airtime.conf config file. If either of these is
|
||||
* not specified, then use values provided by the $_SERVER global variable.
|
||||
*/
|
||||
public function getFileUrlUsingConfigAddress()
|
||||
{
|
||||
$CC_CONFIG = Config::getConfig();
|
||||
|
||||
if (isset($CC_CONFIG['baseUrl'])) {
|
||||
$serverName = $CC_CONFIG['baseUrl'];
|
||||
} else {
|
||||
$serverName = $_SERVER['SERVER_NAME'];
|
||||
}
|
||||
|
||||
if (isset($CC_CONFIG['basePort'])) {
|
||||
$serverPort = $CC_CONFIG['basePort'];
|
||||
} else {
|
||||
$serverPort = $_SERVER['SERVER_PORT'];
|
||||
}
|
||||
|
||||
return $this->constructGetFileUrl($serverName, $serverPort);
|
||||
}
|
||||
|
||||
private function constructGetFileUrl($p_serverName, $p_serverPort)
|
||||
{
|
||||
return "http://$p_serverName:$p_serverPort/api/get-media/file/".$this->getId().".".$this->getFileExtension();
|
||||
$CC_CONFIG = Config::getConfig();
|
||||
|
||||
$protocol = empty($_SERVER['HTTPS']) ? "http" : "https";
|
||||
|
||||
$serverName = $_SERVER['SERVER_NAME'];
|
||||
$serverPort = $_SERVER['SERVER_PORT'];
|
||||
$subDir = $CC_CONFIG['baseDir'];
|
||||
|
||||
if ($subDir[0] === "/") {
|
||||
$subDir = substr($subDir, 1, strlen($subDir) - 1);
|
||||
}
|
||||
|
||||
$baseUrl = "{$protocol}://{$serverName}:{$serverPort}/{$subDir}";
|
||||
|
||||
return $this->getRelativeFileUrl($baseUrl);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -547,6 +528,8 @@ SQL;
|
|||
*/
|
||||
public function getRelativeFileUrl($baseUrl)
|
||||
{
|
||||
Logging::debug("Zend base url: $baseUrl");
|
||||
|
||||
return $baseUrl."api/get-media/file/".$this->getId().".".$this->getFileExtension();
|
||||
}
|
||||
|
||||
|
|
|
@ -1,9 +1,16 @@
|
|||
<?php $baseUrl = Application_Common_OsPath::getBaseDir(); ?>
|
||||
<div id="import_status" class="library_import" style="display:none"><? echo _("File import in progress..."); ?><img src=<?php echo $baseUrl . "css/images/file_import_loader.gif"?>></img></div>
|
||||
<div id="import_status" class="library_import" style="display:none">
|
||||
<?php echo _("File import in progress..."); ?>
|
||||
<img src=<?php echo $baseUrl . "css/images/file_import_loader.gif"?>></img>
|
||||
</div>
|
||||
|
||||
<fieldset class="toggle closed" id="filter_options">
|
||||
<legend style="cursor: pointer;"><span class="ui-icon ui-icon-triangle-2-n-s"></span><? echo _("Advanced Search Options") ?></legend>
|
||||
<legend style="cursor: pointer;">
|
||||
<span class="ui-icon ui-icon-triangle-2-n-s"></span>
|
||||
<?php echo _("Advanced Search Options") ?>
|
||||
</legend>
|
||||
<div id="advanced_search" class="advanced_search form-horizontal"></div>
|
||||
</fieldset>
|
||||
|
||||
<table id="library_display" cellpadding="0" cellspacing="0" class="datatable">
|
||||
</table>
|
||||
|
|
Binary file not shown.
|
@ -8,8 +8,8 @@ msgstr ""
|
|||
"Project-Id-Version: Airtime 2.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-05-21 09:20-0400\n"
|
||||
"PO-Revision-Date: 2013-05-17 14:43-0500\n"
|
||||
"Last-Translator: Denise Rigato <denise.rigato@sourcefabric.org>\n"
|
||||
"PO-Revision-Date: 2013-05-22 10:43+0100\n"
|
||||
"Last-Translator: Daniel James <daniel.james@sourcefabric.org>\n"
|
||||
"Language-Team: Sourcefabric <contact@sourcefabric.org>\n"
|
||||
"Language: cs_CZ\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -1547,8 +1547,8 @@ msgstr "'Délka' by měla být ve formátu '00:00:00'"
|
|||
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:513
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
|
||||
msgid "The value should be in timestamp format(eg. 0000-00-00 or 00-00-00 00:00:00)"
|
||||
msgstr "Hodnota by měla být v časový formát(např. 0000-00-00 nebo 00-00-00 00:00:00)"
|
||||
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:540
|
||||
msgid "The value has to be numeric"
|
||||
|
@ -2200,7 +2200,7 @@ msgstr "Tato cesta není v současné době dostupná."
|
|||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:170
|
||||
#, php-format
|
||||
msgid "Some steam types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
msgstr ""
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:171
|
||||
|
|
Binary file not shown.
|
@ -8,8 +8,8 @@ msgstr ""
|
|||
"Project-Id-Version: Airtime 2.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-05-21 09:20-0400\n"
|
||||
"PO-Revision-Date: 2013-05-17 14:44-0500\n"
|
||||
"Last-Translator: Denise Rigato <denise.rigato@sourcefabric.org>\n"
|
||||
"PO-Revision-Date: 2013-05-22 10:44+0100\n"
|
||||
"Last-Translator: Daniel James <daniel.james@sourcefabric.org>\n"
|
||||
"Language-Team: Austrian Localization <contact@sourcefabric.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -1545,8 +1545,8 @@ msgstr "Die 'Dauer' muß im Format '00:00:00' eingegeben werden"
|
|||
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:513
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
|
||||
msgid "The value should be in timestamp format(eg. 0000-00-00 or 00-00-00 00:00:00)"
|
||||
msgstr "Der Wert muß im Timestamp-Format eingegeben werden (zB. 0000-00-00 oder 00-00-00 00:00:00)"
|
||||
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:540
|
||||
msgid "The value has to be numeric"
|
||||
|
@ -2206,7 +2206,7 @@ msgstr "Dieser Pfad ist derzeit nicht erreichbar."
|
|||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:170
|
||||
#, php-format
|
||||
msgid "Some steam types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
msgstr ""
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:171
|
||||
|
|
Binary file not shown.
|
@ -8,8 +8,8 @@ msgstr ""
|
|||
"Project-Id-Version: Airtime 2.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-05-21 09:20-0400\n"
|
||||
"PO-Revision-Date: 2013-05-17 14:44-0500\n"
|
||||
"Last-Translator: Denise Rigato <denise.rigato@sourcefabric.org>\n"
|
||||
"PO-Revision-Date: 2013-05-22 10:45+0100\n"
|
||||
"Last-Translator: Daniel James <daniel.james@sourcefabric.org>\n"
|
||||
"Language-Team: German Localization <contact@sourcefabric.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -1553,8 +1553,8 @@ msgstr "'Länge' sollte im 00:00:00-Format sein"
|
|||
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:513
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
|
||||
msgid "The value should be in timestamp format(eg. 0000-00-00 or 00-00-00 00:00:00)"
|
||||
msgstr "Der Wert sollte in Zeitstempel-Format vorliegen (z.B. 0000-00-00 oder 00-00-00 00:00:00)"
|
||||
msgid "The value should be in timestamp format (e.g. 0000-00-00 or 0000-00-00 00:00:00)"
|
||||
msgstr "Der Wert sollte in Zeitstempel-Format vorliegen (z.B. 0000-00-00 oder 0000-00-00 00:00:00)"
|
||||
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:540
|
||||
msgid "The value has to be numeric"
|
||||
|
@ -2211,7 +2211,7 @@ msgstr "Zu diesem Pfad besteht momentan kein Zugang."
|
|||
# Translated without GUI review!
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:170
|
||||
#, php-format
|
||||
msgid "Some steam types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
msgstr "Einige Stream Formate erfordern weitre Einstellungen. Einzelheiten über das Aktivieren von %sAAC+ Unterstüzung%s oder %sOpus Unterstüzung%s werden bereitgestellt."
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:171
|
||||
|
|
Binary file not shown.
|
@ -8,8 +8,8 @@ msgstr ""
|
|||
"Project-Id-Version: Airtime 2.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-05-21 09:20-0400\n"
|
||||
"PO-Revision-Date: 2013-05-17 14:44-0500\n"
|
||||
"Last-Translator: Denise Rigato <denise.rigato@sourcefabric.org>\n"
|
||||
"PO-Revision-Date: 2013-05-22 10:46+0100\n"
|
||||
"Last-Translator: Daniel James <daniel.james@sourcefabric.org>\n"
|
||||
"Language-Team: Greek Localization <contact@sourcefabric.org>\n"
|
||||
"Language: el_GR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -1547,8 +1547,8 @@ msgstr "Το «Μήκος» θα πρέπει να είναι σε υπό μορ
|
|||
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:513
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
|
||||
msgid "The value should be in timestamp format(eg. 0000-00-00 or 00-00-00 00:00:00)"
|
||||
msgstr "Η τιμή θα πρέπει να είναι υπο μορφής ώρας (π.χ. 0000-00-00 ή 00-00-00 00:00:00)"
|
||||
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:540
|
||||
msgid "The value has to be numeric"
|
||||
|
@ -2200,7 +2200,7 @@ msgstr "Αυτή η διαδρομή δεν είναι προς το παρόν
|
|||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:170
|
||||
#, php-format
|
||||
msgid "Some steam types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
msgstr ""
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:171
|
||||
|
|
Binary file not shown.
|
@ -8,8 +8,8 @@ msgstr ""
|
|||
"Project-Id-Version: Airtime 2.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-05-21 09:20-0400\n"
|
||||
"PO-Revision-Date: 2013-05-17 14:44-0500\n"
|
||||
"Last-Translator: Denise Rigato <denise.rigato@sourcefabric.org>\n"
|
||||
"PO-Revision-Date: 2013-05-22 10:47+0100\n"
|
||||
"Last-Translator: Daniel James <daniel.james@sourcefabric.org>\n"
|
||||
"Language-Team: Canadian Localization <contact@sourcefabric.org>\n"
|
||||
"Language: en_CA\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -69,7 +69,7 @@ msgstr "Edit Show"
|
|||
|
||||
#: airtime_mvc/application/services/CalendarService.php:133
|
||||
msgid "Edit This Instance"
|
||||
msgstr ""
|
||||
msgstr "Edit This Instance"
|
||||
|
||||
#: airtime_mvc/application/services/CalendarService.php:151
|
||||
#: airtime_mvc/application/services/CalendarService.php:166
|
||||
|
@ -93,7 +93,7 @@ msgstr "Delete This Instance and All Following"
|
|||
|
||||
#: airtime_mvc/application/services/CalendarService.php:210
|
||||
msgid "Permission denied"
|
||||
msgstr ""
|
||||
msgstr "Permission denied"
|
||||
|
||||
#: airtime_mvc/application/services/CalendarService.php:214
|
||||
#: airtime_mvc/application/models/ShowInstance.php:245
|
||||
|
@ -228,12 +228,12 @@ msgstr "Logout"
|
|||
#: airtime_mvc/application/layouts/scripts/layout.phtml:41
|
||||
#: airtime_mvc/application/layouts/scripts/layout.phtml:66
|
||||
msgid "Play"
|
||||
msgstr ""
|
||||
msgstr "Play"
|
||||
|
||||
#: airtime_mvc/application/layouts/scripts/layout.phtml:42
|
||||
#: airtime_mvc/application/layouts/scripts/layout.phtml:67
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
msgstr "Stop"
|
||||
|
||||
#: airtime_mvc/application/layouts/scripts/layout.phtml:46
|
||||
#: airtime_mvc/application/models/Block.php:1330
|
||||
|
@ -244,7 +244,7 @@ msgstr "Cue In"
|
|||
|
||||
#: airtime_mvc/application/layouts/scripts/layout.phtml:48
|
||||
msgid "Set Cue In"
|
||||
msgstr ""
|
||||
msgstr "Set Cue In"
|
||||
|
||||
#: airtime_mvc/application/layouts/scripts/layout.phtml:53
|
||||
#: airtime_mvc/application/models/Block.php:1331
|
||||
|
@ -255,11 +255,11 @@ msgstr "Cue Out"
|
|||
|
||||
#: airtime_mvc/application/layouts/scripts/layout.phtml:55
|
||||
msgid "Set Cue Out"
|
||||
msgstr ""
|
||||
msgstr "Set Cue Out"
|
||||
|
||||
#: airtime_mvc/application/layouts/scripts/layout.phtml:70
|
||||
msgid "Cursor"
|
||||
msgstr ""
|
||||
msgstr "Cursor"
|
||||
|
||||
#: airtime_mvc/application/layouts/scripts/layout.phtml:71
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:281
|
||||
|
@ -444,7 +444,7 @@ msgstr "Airtime Password Reset"
|
|||
|
||||
#: airtime_mvc/application/models/Scheduler.php:72
|
||||
msgid "Cannot move items out of linked shows"
|
||||
msgstr ""
|
||||
msgstr "Cannot move items out of linked shows"
|
||||
|
||||
#: airtime_mvc/application/models/Scheduler.php:115
|
||||
msgid "The schedule you're viewing is out of date! (sched mismatch)"
|
||||
|
@ -481,7 +481,7 @@ msgstr "The show %s has been previously updated!"
|
|||
|
||||
#: airtime_mvc/application/models/Scheduler.php:174
|
||||
msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
|
||||
msgstr ""
|
||||
msgstr "Content in linked shows must be scheduled before or after any one is broadcasted"
|
||||
|
||||
#: airtime_mvc/application/models/Scheduler.php:197
|
||||
#: airtime_mvc/application/models/Scheduler.php:283
|
||||
|
@ -1125,7 +1125,7 @@ msgstr "Mount cannot be empty with Icecast server."
|
|||
|
||||
#: airtime_mvc/application/forms/AddShowRepeats.php:10
|
||||
msgid "Link:"
|
||||
msgstr ""
|
||||
msgstr "Link:"
|
||||
|
||||
#: airtime_mvc/application/forms/AddShowRepeats.php:16
|
||||
msgid "Repeat Type:"
|
||||
|
@ -1184,15 +1184,15 @@ msgstr "Sat"
|
|||
|
||||
#: airtime_mvc/application/forms/AddShowRepeats.php:45
|
||||
msgid "Repeat By:"
|
||||
msgstr ""
|
||||
msgstr "Repeat By:"
|
||||
|
||||
#: airtime_mvc/application/forms/AddShowRepeats.php:48
|
||||
msgid "day of the month"
|
||||
msgstr ""
|
||||
msgstr "day of the month"
|
||||
|
||||
#: airtime_mvc/application/forms/AddShowRepeats.php:48
|
||||
msgid "day of the week"
|
||||
msgstr ""
|
||||
msgstr "day of the week"
|
||||
|
||||
#: airtime_mvc/application/forms/AddShowRepeats.php:67
|
||||
msgid "No End?"
|
||||
|
@ -1546,8 +1546,8 @@ msgstr "'Length' should be in '00:00:00' format"
|
|||
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:513
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
|
||||
msgid "The value should be in timestamp format(eg. 0000-00-00 or 00-00-00 00:00:00)"
|
||||
msgstr "The value should be in timestamp format(eg. 0000-00-00 or 00-00-00 00:00:00)"
|
||||
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:540
|
||||
msgid "The value has to be numeric"
|
||||
|
@ -1604,7 +1604,7 @@ msgstr "Password field cannot be empty."
|
|||
|
||||
#: airtime_mvc/application/forms/GeneralPreferences.php:33
|
||||
msgid "Default Crossfade Duration (s):"
|
||||
msgstr ""
|
||||
msgstr "Default Crossfade Duration (s):"
|
||||
|
||||
#: airtime_mvc/application/forms/GeneralPreferences.php:40
|
||||
#: airtime_mvc/application/forms/GeneralPreferences.php:59
|
||||
|
@ -1614,11 +1614,11 @@ msgstr "enter a time in seconds 0{.0}"
|
|||
|
||||
#: airtime_mvc/application/forms/GeneralPreferences.php:52
|
||||
msgid "Default Fade In (s):"
|
||||
msgstr ""
|
||||
msgstr "Default Fade In (s):"
|
||||
|
||||
#: airtime_mvc/application/forms/GeneralPreferences.php:71
|
||||
msgid "Default Fade Out (s):"
|
||||
msgstr ""
|
||||
msgstr "Default Fade Out (s):"
|
||||
|
||||
#: airtime_mvc/application/forms/GeneralPreferences.php:89
|
||||
#, php-format
|
||||
|
@ -1975,11 +1975,11 @@ msgstr "Are you sure you want to delete the selected item(s)?"
|
|||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:64
|
||||
msgid "Scheduled"
|
||||
msgstr ""
|
||||
msgstr "Scheduled"
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:65
|
||||
msgid "Playlist / Block"
|
||||
msgstr ""
|
||||
msgstr "Playlist / Block"
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||
msgid "Bit Rate"
|
||||
|
@ -2070,7 +2070,7 @@ msgstr "You are currently uploading files. %sGoing to another screen will cancel
|
|||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:113
|
||||
msgid "Open Media Builder"
|
||||
msgstr ""
|
||||
msgstr "Open Media Builder"
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:114
|
||||
msgid "please put in a time '00:00:00 (.0)'"
|
||||
|
@ -2199,8 +2199,8 @@ msgstr "This path is currently not accessible."
|
|||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:170
|
||||
#, php-format
|
||||
msgid "Some steam types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
msgstr ""
|
||||
msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
msgstr "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:171
|
||||
msgid "Connected to the streaming server"
|
||||
|
@ -2270,7 +2270,7 @@ msgstr "The show instance doesn't exist anymore!"
|
|||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:195
|
||||
msgid "Warning: Shows cannot be re-linked"
|
||||
msgstr ""
|
||||
msgstr "Warning: Shows cannot be re-linked"
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:199
|
||||
msgid "Show"
|
||||
|
@ -2494,15 +2494,15 @@ msgstr "Moving %s Items"
|
|||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:294
|
||||
msgid "Fade Editor"
|
||||
msgstr ""
|
||||
msgstr "Fade Editor"
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:295
|
||||
msgid "Cue Editor"
|
||||
msgstr ""
|
||||
msgstr "Cue Editor"
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:296
|
||||
msgid "Waveform features are available in a browser supporting the Web Audio API"
|
||||
msgstr ""
|
||||
msgstr "Waveform features are available in a browser supporting the Web Audio API"
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:299
|
||||
msgid "Select all"
|
||||
|
@ -3096,7 +3096,7 @@ msgstr "Empty playlist"
|
|||
#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
|
||||
#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
|
||||
msgid "Show Waveform"
|
||||
msgstr ""
|
||||
msgstr "Show Waveform"
|
||||
|
||||
#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
|
||||
#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:70
|
||||
|
@ -3143,12 +3143,12 @@ msgstr "New Webstream"
|
|||
|
||||
#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:21
|
||||
msgid "Empty playlist content"
|
||||
msgstr ""
|
||||
msgstr "Empty playlist content"
|
||||
|
||||
#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:21
|
||||
#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:21
|
||||
msgid "Clear"
|
||||
msgstr ""
|
||||
msgstr "Clear"
|
||||
|
||||
#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:24
|
||||
msgid "Shuffle playlist"
|
||||
|
@ -3175,7 +3175,7 @@ msgstr "No open playlist"
|
|||
|
||||
#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:21
|
||||
msgid "Empty smart block content"
|
||||
msgstr ""
|
||||
msgstr "Empty smart block content"
|
||||
|
||||
#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:90
|
||||
msgid "No open smart block"
|
||||
|
|
Binary file not shown.
|
@ -8,8 +8,8 @@ msgstr ""
|
|||
"Project-Id-Version: Airtime 2.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-05-21 09:20-0400\n"
|
||||
"PO-Revision-Date: 2013-05-17 14:44-0500\n"
|
||||
"Last-Translator: Denise Rigato <denise.rigato@sourcefabric.org>\n"
|
||||
"PO-Revision-Date: 2013-05-22 10:48+0100\n"
|
||||
"Last-Translator: Daniel James <daniel.james@sourcefabric.org>\n"
|
||||
"Language-Team: British Localization <contact@sourcefabric.org>\n"
|
||||
"Language: en_GB\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -69,7 +69,7 @@ msgstr "Edit Show"
|
|||
|
||||
#: airtime_mvc/application/services/CalendarService.php:133
|
||||
msgid "Edit This Instance"
|
||||
msgstr ""
|
||||
msgstr "Edit This Instance"
|
||||
|
||||
#: airtime_mvc/application/services/CalendarService.php:151
|
||||
#: airtime_mvc/application/services/CalendarService.php:166
|
||||
|
@ -93,7 +93,7 @@ msgstr "Delete This Instance and All Following"
|
|||
|
||||
#: airtime_mvc/application/services/CalendarService.php:210
|
||||
msgid "Permission denied"
|
||||
msgstr ""
|
||||
msgstr "Permission denied"
|
||||
|
||||
#: airtime_mvc/application/services/CalendarService.php:214
|
||||
#: airtime_mvc/application/models/ShowInstance.php:245
|
||||
|
@ -228,12 +228,12 @@ msgstr "Logout"
|
|||
#: airtime_mvc/application/layouts/scripts/layout.phtml:41
|
||||
#: airtime_mvc/application/layouts/scripts/layout.phtml:66
|
||||
msgid "Play"
|
||||
msgstr ""
|
||||
msgstr "Play"
|
||||
|
||||
#: airtime_mvc/application/layouts/scripts/layout.phtml:42
|
||||
#: airtime_mvc/application/layouts/scripts/layout.phtml:67
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
msgstr "Stop"
|
||||
|
||||
#: airtime_mvc/application/layouts/scripts/layout.phtml:46
|
||||
#: airtime_mvc/application/models/Block.php:1330
|
||||
|
@ -244,7 +244,7 @@ msgstr "Cue In"
|
|||
|
||||
#: airtime_mvc/application/layouts/scripts/layout.phtml:48
|
||||
msgid "Set Cue In"
|
||||
msgstr ""
|
||||
msgstr "Set Cue In"
|
||||
|
||||
#: airtime_mvc/application/layouts/scripts/layout.phtml:53
|
||||
#: airtime_mvc/application/models/Block.php:1331
|
||||
|
@ -255,11 +255,11 @@ msgstr "Cue Out"
|
|||
|
||||
#: airtime_mvc/application/layouts/scripts/layout.phtml:55
|
||||
msgid "Set Cue Out"
|
||||
msgstr ""
|
||||
msgstr "Set Cue Out"
|
||||
|
||||
#: airtime_mvc/application/layouts/scripts/layout.phtml:70
|
||||
msgid "Cursor"
|
||||
msgstr ""
|
||||
msgstr "Cursor"
|
||||
|
||||
#: airtime_mvc/application/layouts/scripts/layout.phtml:71
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:281
|
||||
|
@ -444,7 +444,7 @@ msgstr "Airtime Password Reset"
|
|||
|
||||
#: airtime_mvc/application/models/Scheduler.php:72
|
||||
msgid "Cannot move items out of linked shows"
|
||||
msgstr ""
|
||||
msgstr "Cannot move items out of linked shows"
|
||||
|
||||
#: airtime_mvc/application/models/Scheduler.php:115
|
||||
msgid "The schedule you're viewing is out of date! (sched mismatch)"
|
||||
|
@ -481,7 +481,7 @@ msgstr "The show %s has been previously updated!"
|
|||
|
||||
#: airtime_mvc/application/models/Scheduler.php:174
|
||||
msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
|
||||
msgstr ""
|
||||
msgstr "Content in linked shows must be scheduled before or after any one is broadcasted"
|
||||
|
||||
#: airtime_mvc/application/models/Scheduler.php:197
|
||||
#: airtime_mvc/application/models/Scheduler.php:283
|
||||
|
@ -1125,7 +1125,7 @@ msgstr "Mount cannot be empty with Icecast server."
|
|||
|
||||
#: airtime_mvc/application/forms/AddShowRepeats.php:10
|
||||
msgid "Link:"
|
||||
msgstr ""
|
||||
msgstr "Link:"
|
||||
|
||||
#: airtime_mvc/application/forms/AddShowRepeats.php:16
|
||||
msgid "Repeat Type:"
|
||||
|
@ -1184,15 +1184,15 @@ msgstr "Sat"
|
|||
|
||||
#: airtime_mvc/application/forms/AddShowRepeats.php:45
|
||||
msgid "Repeat By:"
|
||||
msgstr ""
|
||||
msgstr "Repeat By:"
|
||||
|
||||
#: airtime_mvc/application/forms/AddShowRepeats.php:48
|
||||
msgid "day of the month"
|
||||
msgstr ""
|
||||
msgstr "day of the month"
|
||||
|
||||
#: airtime_mvc/application/forms/AddShowRepeats.php:48
|
||||
msgid "day of the week"
|
||||
msgstr ""
|
||||
msgstr "day of the week"
|
||||
|
||||
#: airtime_mvc/application/forms/AddShowRepeats.php:67
|
||||
msgid "No End?"
|
||||
|
@ -1546,8 +1546,8 @@ msgstr "'Length' should be in '00:00:00' format"
|
|||
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:513
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
|
||||
msgid "The value should be in timestamp format(eg. 0000-00-00 or 00-00-00 00:00:00)"
|
||||
msgstr "The value should be in timestamp format(eg. 0000-00-00 or 00-00-00 00:00:00)"
|
||||
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:540
|
||||
msgid "The value has to be numeric"
|
||||
|
@ -1604,7 +1604,7 @@ msgstr "Password field cannot be empty."
|
|||
|
||||
#: airtime_mvc/application/forms/GeneralPreferences.php:33
|
||||
msgid "Default Crossfade Duration (s):"
|
||||
msgstr ""
|
||||
msgstr "Default Crossfade Duration (s):"
|
||||
|
||||
#: airtime_mvc/application/forms/GeneralPreferences.php:40
|
||||
#: airtime_mvc/application/forms/GeneralPreferences.php:59
|
||||
|
@ -1614,11 +1614,11 @@ msgstr "enter a time in seconds 0{.0}"
|
|||
|
||||
#: airtime_mvc/application/forms/GeneralPreferences.php:52
|
||||
msgid "Default Fade In (s):"
|
||||
msgstr ""
|
||||
msgstr "Default Fade In (s):"
|
||||
|
||||
#: airtime_mvc/application/forms/GeneralPreferences.php:71
|
||||
msgid "Default Fade Out (s):"
|
||||
msgstr ""
|
||||
msgstr "Default Fade Out (s):"
|
||||
|
||||
#: airtime_mvc/application/forms/GeneralPreferences.php:89
|
||||
#, php-format
|
||||
|
@ -1975,11 +1975,11 @@ msgstr "Are you sure you want to delete the selected item(s)?"
|
|||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:64
|
||||
msgid "Scheduled"
|
||||
msgstr ""
|
||||
msgstr "Scheduled"
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:65
|
||||
msgid "Playlist / Block"
|
||||
msgstr ""
|
||||
msgstr "Playlist / Block"
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||
msgid "Bit Rate"
|
||||
|
@ -2070,7 +2070,7 @@ msgstr "You are currently uploading files. %sGoing to another screen will cancel
|
|||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:113
|
||||
msgid "Open Media Builder"
|
||||
msgstr ""
|
||||
msgstr "Open Media Builder"
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:114
|
||||
msgid "please put in a time '00:00:00 (.0)'"
|
||||
|
@ -2199,8 +2199,8 @@ msgstr "This path is currently not accessible."
|
|||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:170
|
||||
#, php-format
|
||||
msgid "Some steam types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
msgstr ""
|
||||
msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
msgstr "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:171
|
||||
msgid "Connected to the streaming server"
|
||||
|
@ -2270,7 +2270,7 @@ msgstr "The show instance doesn't exist anymore!"
|
|||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:195
|
||||
msgid "Warning: Shows cannot be re-linked"
|
||||
msgstr ""
|
||||
msgstr "Warning: Shows cannot be re-linked"
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:199
|
||||
msgid "Show"
|
||||
|
@ -2494,15 +2494,15 @@ msgstr "Moving %s Items"
|
|||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:294
|
||||
msgid "Fade Editor"
|
||||
msgstr ""
|
||||
msgstr "Fade Editor"
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:295
|
||||
msgid "Cue Editor"
|
||||
msgstr ""
|
||||
msgstr "Cue Editor"
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:296
|
||||
msgid "Waveform features are available in a browser supporting the Web Audio API"
|
||||
msgstr ""
|
||||
msgstr "Waveform features are available in a browser supporting the Web Audio API"
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:299
|
||||
msgid "Select all"
|
||||
|
@ -3096,7 +3096,7 @@ msgstr "Empty playlist"
|
|||
#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
|
||||
#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
|
||||
msgid "Show Waveform"
|
||||
msgstr ""
|
||||
msgstr "Show Waveform"
|
||||
|
||||
#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
|
||||
#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:70
|
||||
|
@ -3143,12 +3143,12 @@ msgstr "New Webstream"
|
|||
|
||||
#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:21
|
||||
msgid "Empty playlist content"
|
||||
msgstr ""
|
||||
msgstr "Empty playlist content"
|
||||
|
||||
#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:21
|
||||
#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:21
|
||||
msgid "Clear"
|
||||
msgstr ""
|
||||
msgstr "Clear"
|
||||
|
||||
#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:24
|
||||
msgid "Shuffle playlist"
|
||||
|
@ -3175,7 +3175,7 @@ msgstr "No open playlist"
|
|||
|
||||
#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:21
|
||||
msgid "Empty smart block content"
|
||||
msgstr ""
|
||||
msgstr "Empty smart block content"
|
||||
|
||||
#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:90
|
||||
msgid "No open smart block"
|
||||
|
|
Binary file not shown.
|
@ -8,8 +8,8 @@ msgstr ""
|
|||
"Project-Id-Version: Airtime 2.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-05-21 09:20-0400\n"
|
||||
"PO-Revision-Date: 2013-05-17 14:44-0500\n"
|
||||
"Last-Translator: Denise Rigato <denise.rigato@sourcefabric.org>\n"
|
||||
"PO-Revision-Date: 2013-05-22 10:49+0100\n"
|
||||
"Last-Translator: Daniel James <daniel.james@sourcefabric.org>\n"
|
||||
"Language-Team: United States Localization <contact@sourcefabric.org>\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -69,7 +69,7 @@ msgstr "Edit Show"
|
|||
|
||||
#: airtime_mvc/application/services/CalendarService.php:133
|
||||
msgid "Edit This Instance"
|
||||
msgstr ""
|
||||
msgstr "Edit This Instance"
|
||||
|
||||
#: airtime_mvc/application/services/CalendarService.php:151
|
||||
#: airtime_mvc/application/services/CalendarService.php:166
|
||||
|
@ -93,7 +93,7 @@ msgstr "Delete This Instance and All Following"
|
|||
|
||||
#: airtime_mvc/application/services/CalendarService.php:210
|
||||
msgid "Permission denied"
|
||||
msgstr ""
|
||||
msgstr "Permission denied"
|
||||
|
||||
#: airtime_mvc/application/services/CalendarService.php:214
|
||||
#: airtime_mvc/application/models/ShowInstance.php:245
|
||||
|
@ -228,12 +228,12 @@ msgstr "Logout"
|
|||
#: airtime_mvc/application/layouts/scripts/layout.phtml:41
|
||||
#: airtime_mvc/application/layouts/scripts/layout.phtml:66
|
||||
msgid "Play"
|
||||
msgstr ""
|
||||
msgstr "Play"
|
||||
|
||||
#: airtime_mvc/application/layouts/scripts/layout.phtml:42
|
||||
#: airtime_mvc/application/layouts/scripts/layout.phtml:67
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
msgstr "Stop"
|
||||
|
||||
#: airtime_mvc/application/layouts/scripts/layout.phtml:46
|
||||
#: airtime_mvc/application/models/Block.php:1330
|
||||
|
@ -244,7 +244,7 @@ msgstr "Cue In"
|
|||
|
||||
#: airtime_mvc/application/layouts/scripts/layout.phtml:48
|
||||
msgid "Set Cue In"
|
||||
msgstr ""
|
||||
msgstr "Set Cue In"
|
||||
|
||||
#: airtime_mvc/application/layouts/scripts/layout.phtml:53
|
||||
#: airtime_mvc/application/models/Block.php:1331
|
||||
|
@ -255,11 +255,11 @@ msgstr "Cue Out"
|
|||
|
||||
#: airtime_mvc/application/layouts/scripts/layout.phtml:55
|
||||
msgid "Set Cue Out"
|
||||
msgstr ""
|
||||
msgstr "Set Cue Out"
|
||||
|
||||
#: airtime_mvc/application/layouts/scripts/layout.phtml:70
|
||||
msgid "Cursor"
|
||||
msgstr ""
|
||||
msgstr "Cursor"
|
||||
|
||||
#: airtime_mvc/application/layouts/scripts/layout.phtml:71
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:281
|
||||
|
@ -444,7 +444,7 @@ msgstr "Airtime Password Reset"
|
|||
|
||||
#: airtime_mvc/application/models/Scheduler.php:72
|
||||
msgid "Cannot move items out of linked shows"
|
||||
msgstr ""
|
||||
msgstr "Cannot move items out of linked shows"
|
||||
|
||||
#: airtime_mvc/application/models/Scheduler.php:115
|
||||
msgid "The schedule you're viewing is out of date! (sched mismatch)"
|
||||
|
@ -481,7 +481,7 @@ msgstr "The show %s has been previously updated!"
|
|||
|
||||
#: airtime_mvc/application/models/Scheduler.php:174
|
||||
msgid "Content in linked shows must be scheduled before or after any one is broadcasted"
|
||||
msgstr ""
|
||||
msgstr "Content in linked shows must be scheduled before or after any one is broadcasted"
|
||||
|
||||
#: airtime_mvc/application/models/Scheduler.php:197
|
||||
#: airtime_mvc/application/models/Scheduler.php:283
|
||||
|
@ -1125,7 +1125,7 @@ msgstr "Mount cannot be empty with Icecast server."
|
|||
|
||||
#: airtime_mvc/application/forms/AddShowRepeats.php:10
|
||||
msgid "Link:"
|
||||
msgstr ""
|
||||
msgstr "Link:"
|
||||
|
||||
#: airtime_mvc/application/forms/AddShowRepeats.php:16
|
||||
msgid "Repeat Type:"
|
||||
|
@ -1184,15 +1184,15 @@ msgstr "Sat"
|
|||
|
||||
#: airtime_mvc/application/forms/AddShowRepeats.php:45
|
||||
msgid "Repeat By:"
|
||||
msgstr ""
|
||||
msgstr "Repeat By:"
|
||||
|
||||
#: airtime_mvc/application/forms/AddShowRepeats.php:48
|
||||
msgid "day of the month"
|
||||
msgstr ""
|
||||
msgstr "day of the month"
|
||||
|
||||
#: airtime_mvc/application/forms/AddShowRepeats.php:48
|
||||
msgid "day of the week"
|
||||
msgstr ""
|
||||
msgstr "day of the week"
|
||||
|
||||
#: airtime_mvc/application/forms/AddShowRepeats.php:67
|
||||
msgid "No End?"
|
||||
|
@ -1546,8 +1546,8 @@ msgstr "'Length' should be in '00:00:00' format"
|
|||
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:513
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
|
||||
msgid "The value should be in timestamp format(eg. 0000-00-00 or 00-00-00 00:00:00)"
|
||||
msgstr "The value should be in timestamp format(eg. 0000-00-00 or 00-00-00 00:00:00)"
|
||||
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:540
|
||||
msgid "The value has to be numeric"
|
||||
|
@ -1604,7 +1604,7 @@ msgstr "Password field cannot be empty."
|
|||
|
||||
#: airtime_mvc/application/forms/GeneralPreferences.php:33
|
||||
msgid "Default Crossfade Duration (s):"
|
||||
msgstr ""
|
||||
msgstr "Default Crossfade Duration (s):"
|
||||
|
||||
#: airtime_mvc/application/forms/GeneralPreferences.php:40
|
||||
#: airtime_mvc/application/forms/GeneralPreferences.php:59
|
||||
|
@ -1614,11 +1614,11 @@ msgstr "enter a time in seconds 0{.0}"
|
|||
|
||||
#: airtime_mvc/application/forms/GeneralPreferences.php:52
|
||||
msgid "Default Fade In (s):"
|
||||
msgstr ""
|
||||
msgstr "Default Fade In (s):"
|
||||
|
||||
#: airtime_mvc/application/forms/GeneralPreferences.php:71
|
||||
msgid "Default Fade Out (s):"
|
||||
msgstr ""
|
||||
msgstr "Default Fade Out (s):"
|
||||
|
||||
#: airtime_mvc/application/forms/GeneralPreferences.php:89
|
||||
#, php-format
|
||||
|
@ -1975,11 +1975,11 @@ msgstr "Are you sure you want to delete the selected item(s)?"
|
|||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:64
|
||||
msgid "Scheduled"
|
||||
msgstr ""
|
||||
msgstr "Scheduled"
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:65
|
||||
msgid "Playlist / Block"
|
||||
msgstr ""
|
||||
msgstr "Playlist / Block"
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||
msgid "Bit Rate"
|
||||
|
@ -2070,7 +2070,7 @@ msgstr "You are currently uploading files. %sGoing to another screen will cancel
|
|||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:113
|
||||
msgid "Open Media Builder"
|
||||
msgstr ""
|
||||
msgstr "Open Media Builder"
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:114
|
||||
msgid "please put in a time '00:00:00 (.0)'"
|
||||
|
@ -2199,8 +2199,8 @@ msgstr "This path is currently not accessible."
|
|||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:170
|
||||
#, php-format
|
||||
msgid "Some steam types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
msgstr ""
|
||||
msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
msgstr "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:171
|
||||
msgid "Connected to the streaming server"
|
||||
|
@ -2270,7 +2270,7 @@ msgstr "The show instance doesn't exist anymore!"
|
|||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:195
|
||||
msgid "Warning: Shows cannot be re-linked"
|
||||
msgstr ""
|
||||
msgstr "Warning: Shows cannot be re-linked"
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:199
|
||||
msgid "Show"
|
||||
|
@ -2494,15 +2494,15 @@ msgstr "Moving %s Items"
|
|||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:294
|
||||
msgid "Fade Editor"
|
||||
msgstr ""
|
||||
msgstr "Fade Editor"
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:295
|
||||
msgid "Cue Editor"
|
||||
msgstr ""
|
||||
msgstr "Cue Editor"
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:296
|
||||
msgid "Waveform features are available in a browser supporting the Web Audio API"
|
||||
msgstr ""
|
||||
msgstr "Waveform features are available in a browser supporting the Web Audio API"
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:299
|
||||
msgid "Select all"
|
||||
|
@ -3096,7 +3096,7 @@ msgstr "Empty playlist"
|
|||
#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:3
|
||||
#: airtime_mvc/application/views/scripts/playlist/set-cue.phtml:3
|
||||
msgid "Show Waveform"
|
||||
msgstr ""
|
||||
msgstr "Show Waveform"
|
||||
|
||||
#: airtime_mvc/application/views/scripts/playlist/set-fade.phtml:6
|
||||
#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:70
|
||||
|
@ -3143,12 +3143,12 @@ msgstr "New Webstream"
|
|||
|
||||
#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:21
|
||||
msgid "Empty playlist content"
|
||||
msgstr ""
|
||||
msgstr "Empty playlist content"
|
||||
|
||||
#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:21
|
||||
#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:21
|
||||
msgid "Clear"
|
||||
msgstr ""
|
||||
msgstr "Clear"
|
||||
|
||||
#: airtime_mvc/application/views/scripts/playlist/playlist.phtml:24
|
||||
msgid "Shuffle playlist"
|
||||
|
@ -3175,7 +3175,7 @@ msgstr "No open playlist"
|
|||
|
||||
#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:21
|
||||
msgid "Empty smart block content"
|
||||
msgstr ""
|
||||
msgstr "Empty smart block content"
|
||||
|
||||
#: airtime_mvc/application/views/scripts/playlist/smart-block.phtml:90
|
||||
msgid "No open smart block"
|
||||
|
|
Binary file not shown.
|
@ -7,8 +7,8 @@ msgstr ""
|
|||
"Project-Id-Version: Airtime 2.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-05-21 09:20-0400\n"
|
||||
"PO-Revision-Date: 2013-05-17 14:44-0500\n"
|
||||
"Last-Translator: Denise Rigato <denise.rigato@sourcefabric.org>\n"
|
||||
"PO-Revision-Date: 2013-05-22 10:49+0100\n"
|
||||
"Last-Translator: Daniel James <daniel.james@sourcefabric.org>\n"
|
||||
"Language-Team: Spanish Localization <contact@sourcefabric.org>\n"
|
||||
"Language: Spanish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -1545,8 +1545,8 @@ msgstr "'Length' (la duración) debe establecerse e un formato de '00:00:00' "
|
|||
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:513
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
|
||||
msgid "The value should be in timestamp format(eg. 0000-00-00 or 00-00-00 00:00:00)"
|
||||
msgstr "El valor debe estar en un formato de tiempo (eg. 0000-00-00 or 00-00-00 00:00:00)"
|
||||
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:540
|
||||
msgid "The value has to be numeric"
|
||||
|
@ -2198,7 +2198,7 @@ msgstr "Esta ruta actualmente está inaccesible."
|
|||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:170
|
||||
#, php-format
|
||||
msgid "Some steam types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
msgstr ""
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:171
|
||||
|
|
Binary file not shown.
|
@ -8,8 +8,8 @@ msgstr ""
|
|||
"Project-Id-Version: Airtime 2.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-05-21 09:20-0400\n"
|
||||
"PO-Revision-Date: 2013-05-17 14:44-0500\n"
|
||||
"Last-Translator: Denise Rigato <denise.rigato@sourcefabric.org>\n"
|
||||
"PO-Revision-Date: 2013-05-22 10:49+0100\n"
|
||||
"Last-Translator: Daniel James <daniel.james@sourcefabric.org>\n"
|
||||
"Language-Team: French Localization <contact@sourcefabric.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -1546,8 +1546,8 @@ msgstr "La 'Durée' doit être au format '00:00:00'"
|
|||
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:513
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
|
||||
msgid "The value should be in timestamp format(eg. 0000-00-00 or 00-00-00 00:00:00)"
|
||||
msgstr "La valeur doit être en format d'horodatage (par exemple 0000-00-00 ou 00-00-00 00:00:00)"
|
||||
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:540
|
||||
msgid "The value has to be numeric"
|
||||
|
@ -2199,7 +2199,7 @@ msgstr "Ce chemin n'est pas accessible."
|
|||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:170
|
||||
#, php-format
|
||||
msgid "Some steam types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
msgstr ""
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:171
|
||||
|
|
Binary file not shown.
|
@ -7,8 +7,8 @@ msgstr ""
|
|||
"Project-Id-Version: Airtime 2.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-05-21 09:20-0400\n"
|
||||
"PO-Revision-Date: 2013-05-17 14:44-0500\n"
|
||||
"Last-Translator: Denise Rigato <denise.rigato@sourcefabric.org>\n"
|
||||
"PO-Revision-Date: 2013-05-22 10:50+0100\n"
|
||||
"Last-Translator: Daniel James <daniel.james@sourcefabric.org>\n"
|
||||
"Language-Team: Hungarian Localization <contact@sourcefabric.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -1545,8 +1545,8 @@ msgstr "'Hosszúság' '00:00:00' formában lehet"
|
|||
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:513
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
|
||||
msgid "The value should be in timestamp format(eg. 0000-00-00 or 00-00-00 00:00:00)"
|
||||
msgstr "Az értéknek az alábbi időbélyeg formátumban kell lennie (pl. 0000-00-00 vagy 00-00-00 00:00:00)"
|
||||
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:540
|
||||
msgid "The value has to be numeric"
|
||||
|
@ -2198,7 +2198,7 @@ msgstr "Ez az útvonal jelenleg nem elérhető."
|
|||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:170
|
||||
#, php-format
|
||||
msgid "Some steam types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
msgstr ""
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:171
|
||||
|
|
Binary file not shown.
|
@ -8,8 +8,8 @@ msgstr ""
|
|||
"Project-Id-Version: Airtime 2.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-05-21 09:20-0400\n"
|
||||
"PO-Revision-Date: 2013-05-17 14:44-0500\n"
|
||||
"Last-Translator: Denise Rigato <denise.rigato@sourcefabric.org>\n"
|
||||
"PO-Revision-Date: 2013-05-22 10:51+0100\n"
|
||||
"Last-Translator: Daniel James <daniel.james@sourcefabric.org>\n"
|
||||
"Language-Team: Italian Localization <contact@sourcefabric.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -1547,8 +1547,8 @@ msgstr "La lunghezza deve essere nel formato '00:00:00'"
|
|||
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:513
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
|
||||
msgid "The value should be in timestamp format(eg. 0000-00-00 or 00-00-00 00:00:00)"
|
||||
msgstr "Il valore deve essere nel formato (es. 0000-00-00 o 00-00-00 00:00:00)"
|
||||
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:540
|
||||
msgid "The value has to be numeric"
|
||||
|
@ -2200,7 +2200,7 @@ msgstr "Questo percorso non è accessibile attualmente."
|
|||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:170
|
||||
#, php-format
|
||||
msgid "Some steam types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
msgstr ""
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:171
|
||||
|
|
Binary file not shown.
|
@ -8,8 +8,8 @@ msgstr ""
|
|||
"Project-Id-Version: Airtime 2.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-05-21 09:20-0400\n"
|
||||
"PO-Revision-Date: 2013-05-17 14:45-0500\n"
|
||||
"Last-Translator: Denise Rigato <denise.rigato@sourcefabric.org>\n"
|
||||
"PO-Revision-Date: 2013-05-22 10:51+0100\n"
|
||||
"Last-Translator: Daniel James <daniel.james@sourcefabric.org>\n"
|
||||
"Language-Team: Korean Localization <contact@sourcefabric.org>\n"
|
||||
"Language: ko_KR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -1544,8 +1544,8 @@ msgstr "길이는 00:00:00 형태로 입력하세요"
|
|||
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:513
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
|
||||
msgid "The value should be in timestamp format(eg. 0000-00-00 or 00-00-00 00:00:00)"
|
||||
msgstr "이 값은 timestamp 형태(eg. 0000-00-00 or 00-00-00 00:00:00)로 입력해주세요"
|
||||
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:540
|
||||
msgid "The value has to be numeric"
|
||||
|
@ -2195,7 +2195,7 @@ msgstr "경로에 접근할수 없습니다"
|
|||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:170
|
||||
#, php-format
|
||||
msgid "Some steam types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
msgstr ""
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:171
|
||||
|
|
Binary file not shown.
|
@ -8,8 +8,8 @@ msgstr ""
|
|||
"Project-Id-Version: Airtime 2.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-05-21 09:20-0400\n"
|
||||
"PO-Revision-Date: 2013-05-17 14:45-0500\n"
|
||||
"Last-Translator: Denise Rigato <denise.rigato@sourcefabric.org>\n"
|
||||
"PO-Revision-Date: 2013-05-22 10:52+0100\n"
|
||||
"Last-Translator: Daniel James <daniel.james@sourcefabric.org>\n"
|
||||
"Language-Team: SEMATpl (licencjonuj.eu) & PallottiFM (pallotti.fm) + radioaktywne.pl <serwer@pallotti.fm>\n"
|
||||
"Language: Polski\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -1546,8 +1546,8 @@ msgstr "Długość powinna być wprowadzona w formacie '00:00:00'"
|
|||
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:513
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
|
||||
msgid "The value should be in timestamp format(eg. 0000-00-00 or 00-00-00 00:00:00)"
|
||||
msgstr "Wartość powinna byc zapisana w formacie timestamp (np. 0000-00-00 lub 00-00-00 00:00:00)"
|
||||
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:540
|
||||
msgid "The value has to be numeric"
|
||||
|
@ -2199,7 +2199,7 @@ msgstr "Ściezka jest obecnie niedostepna."
|
|||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:170
|
||||
#, php-format
|
||||
msgid "Some steam types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
msgstr ""
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:171
|
||||
|
|
Binary file not shown.
|
@ -8,8 +8,8 @@ msgstr ""
|
|||
"Project-Id-Version: Airtime 2.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-05-21 09:20-0400\n"
|
||||
"PO-Revision-Date: 2013-05-17 14:45-0500\n"
|
||||
"Last-Translator: Denise Rigato <denise.rigato@sourcefabric.org>\n"
|
||||
"PO-Revision-Date: 2013-05-22 10:52+0100\n"
|
||||
"Last-Translator: Daniel James <daniel.james@sourcefabric.org>\n"
|
||||
"Language-Team: Brazilian Localization <contact@sourcefabric.org>\n"
|
||||
"Language: pt-BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -1547,8 +1547,8 @@ msgstr "A duração deve ser informada no formato '00:00:00'"
|
|||
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:513
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
|
||||
msgid "The value should be in timestamp format(eg. 0000-00-00 or 00-00-00 00:00:00)"
|
||||
msgstr "O valor deve estar no formato timestamp (ex.: 0000-00-00 ou 00-00-00 00:00:00)"
|
||||
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:540
|
||||
msgid "The value has to be numeric"
|
||||
|
@ -2200,7 +2200,7 @@ msgstr "O caminho está inacessível no momento."
|
|||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:170
|
||||
#, php-format
|
||||
msgid "Some steam types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
msgstr ""
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:171
|
||||
|
|
Binary file not shown.
|
@ -8,8 +8,8 @@ msgstr ""
|
|||
"Project-Id-Version: Airtime 2.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-05-21 09:20-0400\n"
|
||||
"PO-Revision-Date: 2013-05-17 14:45-0500\n"
|
||||
"Last-Translator: Denise Rigato <denise.rigato@sourcefabric.org>\n"
|
||||
"PO-Revision-Date: 2013-05-22 10:53+0100\n"
|
||||
"Last-Translator: Daniel James <daniel.james@sourcefabric.org>\n"
|
||||
"Language-Team: Russian Localization <contact@sourcefabric.org>\n"
|
||||
"Language: ru_RU\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -1548,8 +1548,8 @@ msgstr "\"Длина\" должна быть в формате '00:00:00'"
|
|||
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:513
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
|
||||
msgid "The value should be in timestamp format(eg. 0000-00-00 or 00-00-00 00:00:00)"
|
||||
msgstr "Значение должно быть в формате временной метки (например, 0000-00-00 или 00-00-00 00:00:00)"
|
||||
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:540
|
||||
msgid "The value has to be numeric"
|
||||
|
@ -2201,7 +2201,7 @@ msgstr "Этот путь в настоящий момент недоступе
|
|||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:170
|
||||
#, php-format
|
||||
msgid "Some steam types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
msgstr ""
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:171
|
||||
|
|
|
@ -1541,7 +1541,7 @@ msgstr ""
|
|||
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:513
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
|
||||
msgid "The value should be in timestamp format(eg. 0000-00-00 or 00-00-00 00:00:00)"
|
||||
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:540
|
||||
|
|
Binary file not shown.
|
@ -8,8 +8,8 @@ msgstr ""
|
|||
"Project-Id-Version: Airtime 2.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-05-21 09:20-0400\n"
|
||||
"PO-Revision-Date: 2013-05-17 14:45-0500\n"
|
||||
"Last-Translator: Denise Rigato <denise.rigato@sourcefabric.org>\n"
|
||||
"PO-Revision-Date: 2013-05-22 10:55+0100\n"
|
||||
"Last-Translator: Daniel James <daniel.james@sourcefabric.org>\n"
|
||||
"Language-Team: Chinese Localization <contact@sourcefabric.org>\n"
|
||||
"Language: zh_CN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -1547,8 +1547,8 @@ msgstr "‘长度’格式应该为‘00:00:00’"
|
|||
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:513
|
||||
#: airtime_mvc/application/forms/SmartBlockCriteria.php:526
|
||||
msgid "The value should be in timestamp format(eg. 0000-00-00 or 00-00-00 00:00:00)"
|
||||
msgstr "时间格式错误,应该为形如0000-00-00 或 00-00-00 00:00:00的格式"
|
||||
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:540
|
||||
msgid "The value has to be numeric"
|
||||
|
@ -2200,7 +2200,7 @@ msgstr "指定的路径无法访问。"
|
|||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:170
|
||||
#, php-format
|
||||
msgid "Some steam types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
msgid "Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."
|
||||
msgstr "某些输出流类型需要进一步的环境配置,请参阅%s启用AAC+%s或者%s启用Opus%s。"
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:171
|
||||
|
|
|
@ -232,6 +232,9 @@ a.badge:hover {
|
|||
.btn-small [class^="icon-"] {
|
||||
margin-top: 0;
|
||||
}
|
||||
#pl_edit.btn.btn-small {
|
||||
margin-left: 10px;
|
||||
}
|
||||
.btn-mini {
|
||||
padding: 2px 6px;
|
||||
font-size: 11px;
|
||||
|
@ -2710,4 +2713,4 @@ fieldset .btn-toolbar {
|
|||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -22,6 +22,13 @@ var live_dj_on_air = false;
|
|||
var scheduled_play_on_air = false;
|
||||
var scheduled_play_source = false;
|
||||
|
||||
|
||||
//a reference returned by setTimeout. Useful for when we want clearTimeout()
|
||||
var newSongTimeoutId = null;
|
||||
|
||||
//a reference returned by setTimeout. Useful for when we want clearTimeout()
|
||||
var newShowTimeoutId = null;
|
||||
|
||||
//keep track of how many UI refreshes the ON-AIR light has been off for.
|
||||
//For example, the uiUpdateInterval is every 200ms, so if onAirOffIterations
|
||||
//is 25, then that means 5 seconds have gone by.
|
||||
|
@ -34,6 +41,8 @@ var nextSongPrepare = true;
|
|||
var nextShowPrepare = true;
|
||||
|
||||
function secondsTimer(){
|
||||
/* This function constantly calls itself every 'uiUpdateInterval'
|
||||
* micro-seconds and is responsible for updating the UI. */
|
||||
if (localRemoteTimeOffset !== null){
|
||||
var date = new Date();
|
||||
approximateServerTime = date.getTime() - localRemoteTimeOffset;
|
||||
|
@ -79,9 +88,11 @@ function updateProgressBarValue(){
|
|||
var songElapsedTime = 0;
|
||||
songPercentDone = (approximateServerTime - currentSong.songStartPosixTime)/currentSong.songLengthMs*100;
|
||||
songElapsedTime = approximateServerTime - currentSong.songStartPosixTime;
|
||||
if (songPercentDone < 0 || songPercentDone > 100){
|
||||
if (songPercentDone < 0) {
|
||||
songPercentDone = 0;
|
||||
//currentSong = null;
|
||||
} else if (songPercentDone > 100) {
|
||||
songPercentDone = 100;
|
||||
} else {
|
||||
if ((currentSong.media_item_played == true && currentShow.length > 0) || (songElapsedTime < 5000 && currentShow[0].record != 1)) {
|
||||
scheduled_play_line_to_switch.attr("class", "line-to-switch on");
|
||||
|
@ -95,40 +106,13 @@ function updateProgressBarValue(){
|
|||
}
|
||||
$('#progress-show').attr("class", "progress-show");
|
||||
}
|
||||
} else if (nextSong == null) {
|
||||
} else {
|
||||
scheduled_play_source = false;
|
||||
scheduled_play_line_to_switch.attr("class", "line-to-switch off");
|
||||
scheduled_play_div.removeClass("ready");
|
||||
$('#progress-show').attr("class", "progress-show-error");
|
||||
}
|
||||
$('#progress-bar').attr("style", "width:"+songPercentDone+"%");
|
||||
|
||||
//calculate how much time left to next song if there is any
|
||||
if (nextSong !== null && nextSongPrepare){
|
||||
var diff = nextSong.songStartPosixTime - approximateServerTime;
|
||||
if (diff < serverUpdateInterval){
|
||||
|
||||
//sometimes the diff is negative (-100ms for example). Still looking
|
||||
//into why this could sometimes happen.
|
||||
if (diff < 0)
|
||||
diff=0;
|
||||
|
||||
nextSongPrepare = false;
|
||||
setTimeout(newSongStart, diff);
|
||||
}
|
||||
}
|
||||
|
||||
//calculate how much time left to next show if there is any
|
||||
if (nextShow.length > 0 && nextShowPrepare){
|
||||
var diff = nextShow[0].showStartPosixTime - approximateServerTime;
|
||||
if (diff < serverUpdateInterval){
|
||||
if (diff < 0)
|
||||
diff=0;
|
||||
|
||||
nextShowPrepare = false;
|
||||
setTimeout(nextShowStart, diff);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function updatePlaybar(){
|
||||
|
@ -159,7 +143,7 @@ function updatePlaybar(){
|
|||
} else {
|
||||
$('#current').html($.i18n._("Current")+": <span style='color:red; font-weight:bold'>"+$.i18n._("Live Stream")+"</span>");
|
||||
}
|
||||
} else if (nextSong == null) {
|
||||
} else {
|
||||
$('#current').html($.i18n._("Current")+": <span style='color:red; font-weight:bold'>"+$.i18n._("Nothing Scheduled")+"</span>");
|
||||
}
|
||||
}
|
||||
|
@ -223,22 +207,66 @@ function calcAdditionalShowData(show){
|
|||
}
|
||||
}
|
||||
|
||||
function parseItems(obj){
|
||||
function calculateTimeToNextSong() {
|
||||
if (approximateServerTime === null) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (newSongTimeoutId !== null) {
|
||||
/* We have a previous timeout set, let's unset it */
|
||||
clearTimeout(newSongTimeoutId);
|
||||
newSongTimeoutId = null;
|
||||
}
|
||||
|
||||
var diff = nextSong.songStartPosixTime - approximateServerTime;
|
||||
if (diff < 0) diff=0;
|
||||
nextSongPrepare = false;
|
||||
newSongTimeoutId= setTimeout(newSongStart, diff);
|
||||
}
|
||||
|
||||
function calculateTimeToNextShow() {
|
||||
if (approximateServerTime === null) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (newShowTimeoutId !== null) {
|
||||
/* We have a previous timeout set, let's unset it */
|
||||
clearTimeout(newShowTimeoutId);
|
||||
newShowTimeoutId = null;
|
||||
}
|
||||
|
||||
var diff = nextShow[0].showStartPosixTime - approximateServerTime;
|
||||
if (diff < 0) diff=0;
|
||||
nextShowPrepare = false;
|
||||
newShowTimeoutId= setTimeout(nextShowStart, diff);
|
||||
}
|
||||
|
||||
function parseItems(obj){
|
||||
$('#time-zone').text(obj.timezone);
|
||||
|
||||
|
||||
previousSong = obj.previous;
|
||||
currentSong = obj.current;
|
||||
nextSong = obj.next;
|
||||
|
||||
if (previousSong !== null)
|
||||
if (previousSong !== null) {
|
||||
calcAdditionalData(previousSong);
|
||||
if (currentSong !== null)
|
||||
}
|
||||
if (currentSong !== null) {
|
||||
calcAdditionalData(currentSong);
|
||||
if (nextSong !== null)
|
||||
}
|
||||
if (nextSong !== null) {
|
||||
calcAdditionalData(nextSong);
|
||||
calculateTimeToNextSong();
|
||||
}
|
||||
|
||||
calcAdditionalShowData(obj.currentShow);
|
||||
calcAdditionalShowData(obj.nextShow);
|
||||
if (obj.currentShow.length > 0) {
|
||||
calcAdditionalShowData(obj.currentShow);
|
||||
}
|
||||
if (obj.nextShow.length > 0) {
|
||||
calcAdditionalShowData(obj.nextShow);
|
||||
calculateTimeToNextShow();
|
||||
}
|
||||
|
||||
currentShow = obj.currentShow;
|
||||
nextShow = obj.nextShow;
|
||||
|
|
|
@ -413,7 +413,7 @@ var AIRTIME = (function(AIRTIME) {
|
|||
|
||||
if (ele.bVisible) {
|
||||
advanceSearchDiv.append(
|
||||
"<div id='advanced_search_col_"+currentColId+" class='control-group'>" +
|
||||
"<div id='advanced_search_col_"+currentColId+"' class='control-group'>" +
|
||||
"<label class='control-label'"+labelStyle+">"+ele.sTitle+" : </label>" +
|
||||
"<div id='"+ele.mDataProp+"' class='controls "+inputClass+"'></div>" +
|
||||
"</div>");
|
||||
|
@ -447,15 +447,15 @@ var AIRTIME = (function(AIRTIME) {
|
|||
function setFilterElement(iColumn, bVisible){
|
||||
var actualId = colReorderMap[iColumn];
|
||||
var selector = "div#advanced_search_col_"+actualId;
|
||||
var $el = $(selector);
|
||||
|
||||
if (bVisible) {
|
||||
$(selector).show();
|
||||
$el.show();
|
||||
} else {
|
||||
$(selector).hide();
|
||||
$el.hide();
|
||||
}
|
||||
}
|
||||
|
||||
var currentColOrder = new Array();
|
||||
|
||||
oTable = $libTable.dataTable( {
|
||||
|
||||
// put hidden columns at the top to insure they can never be visible
|
||||
|
@ -764,7 +764,8 @@ var AIRTIME = (function(AIRTIME) {
|
|||
"sAlign": "right",
|
||||
"aiExclude": [0, 1, 2],
|
||||
"sSize": "css",
|
||||
"fnStateChange": setFilterElement
|
||||
"fnStateChange": setFilterElement,
|
||||
"buttonText": $.i18n._("Show / hide columns")
|
||||
},
|
||||
|
||||
"oColReorder": {
|
||||
|
|
|
@ -403,7 +403,7 @@ function setupEventListeners() {
|
|||
$(".stream_type_help_icon").qtip({
|
||||
content: {
|
||||
text: sprintf(
|
||||
$.i18n._("Some steam types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."),
|
||||
$.i18n._("Some stream types require extra configuration. Details about enabling %sAAC+ Support%s or %sOpus Support%s are provided."),
|
||||
"<a target='_blank' href='https://wiki.sourcefabric.org/x/NgPQ'>",
|
||||
"</a>",
|
||||
"<a target='_blank' href='https://wiki.sourcefabric.org/x/KgPQ'>",
|
||||
|
|
|
@ -817,17 +817,18 @@ var AIRTIME = (function(AIRTIME){
|
|||
mod.checkToolBarIcons();
|
||||
},
|
||||
|
||||
// R = ColReorder, C = ColVis
|
||||
"sDom": 'R<"dt-process-rel"r><"sb-padded"<"H"C>><"dataTables_scrolling sb-padded"t>',
|
||||
|
||||
"oColVis": {
|
||||
"aiExclude": [ 0, 1 ]
|
||||
"aiExclude": [ 0, 1 ],
|
||||
"buttonText": $.i18n._("Show / hide columns"),
|
||||
},
|
||||
|
||||
"oColReorder": {
|
||||
"iFixedColumns": 2
|
||||
},
|
||||
|
||||
// R = ColReorderResize, C = ColVis
|
||||
"sDom": 'R<"dt-process-rel"r><"sb-padded"<"H"C>><"dataTables_scrolling sb-padded"t>',
|
||||
|
||||
|
||||
"sAjaxDataProp": "schedule",
|
||||
"oLanguage": datatables_dict,
|
||||
"sAjaxSource": baseUrl+"showbuilder/builder-feed"
|
||||
|
|
|
@ -30,8 +30,4 @@ The new _fnDomBaseButton looks like this:
|
|||
|
||||
return nButton;
|
||||
},
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
* Line 96 has changed
|
||||
- "buttonText": "Show / hide columns",
|
||||
+ "buttonText": $.i18n._("Show / hide columns"),
|
||||
|
File diff suppressed because it is too large
Load Diff
|
@ -1,2 +1,2 @@
|
|||
version=3
|
||||
http://sf.net/airtime/airtime-([\d\.]+)\.tar\.gz
|
||||
http://sf.net/airtime/airtime-([\d\.]+)-ga\.tar\.gz
|
||||
|
|
Loading…
Reference in New Issue