diff --git a/CREDITS b/CREDITS
index a78be4701..83b80fcc6 100644
--- a/CREDITS
+++ b/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)
diff --git a/airtime_mvc/application/configs/conf.php b/airtime_mvc/application/configs/conf.php
index 937b91c75..13b4a06bd 100644
--- a/airtime_mvc/application/configs/conf.php
+++ b/airtime_mvc/application/configs/conf.php
@@ -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'];
diff --git a/airtime_mvc/application/forms/SmartBlockCriteria.php b/airtime_mvc/application/forms/SmartBlockCriteria.php
index d981fdb49..cd588a215 100644
--- a/airtime_mvc/application/forms/SmartBlockCriteria.php
+++ b/airtime_mvc/application/forms/SmartBlockCriteria.php
@@ -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']);
diff --git a/airtime_mvc/application/models/StoredFile.php b/airtime_mvc/application/models/StoredFile.php
index 9169efaee..74e0a7a05 100644
--- a/airtime_mvc/application/models/StoredFile.php
+++ b/airtime_mvc/application/models/StoredFile.php
@@ -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();
}
diff --git a/airtime_mvc/application/views/scripts/library/library.phtml b/airtime_mvc/application/views/scripts/library/library.phtml
index 6a57e0c6f..8edf9efa2 100644
--- a/airtime_mvc/application/views/scripts/library/library.phtml
+++ b/airtime_mvc/application/views/scripts/library/library.phtml
@@ -1,9 +1,16 @@
-
echo _("File import in progress..."); ?>>
+
+
+ >
+
+
diff --git a/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.mo
index 22d40ca33..0df19471f 100644
Binary files a/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.mo and b/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.mo differ
diff --git a/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.po b/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.po
index 009da7098..43c19a492 100644
--- a/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.po
@@ -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 \n"
+"PO-Revision-Date: 2013-05-22 10:43+0100\n"
+"Last-Translator: Daniel James \n"
"Language-Team: Sourcefabric \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
diff --git a/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.mo
index e8a37cbd6..1b38ed906 100644
Binary files a/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.mo and b/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.mo differ
diff --git a/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po b/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po
index 6ac4baac6..8e6aa7f66 100644
--- a/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po
@@ -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 \n"
+"PO-Revision-Date: 2013-05-22 10:44+0100\n"
+"Last-Translator: Daniel James \n"
"Language-Team: Austrian Localization \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
diff --git a/airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.mo
index 939ac2a85..cc826753d 100644
Binary files a/airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.mo and b/airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.mo differ
diff --git a/airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.po b/airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.po
index b9ea22684..56af0502d 100644
--- a/airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.po
@@ -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 \n"
+"PO-Revision-Date: 2013-05-22 10:45+0100\n"
+"Last-Translator: Daniel James \n"
"Language-Team: German Localization \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
diff --git a/airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.mo
index 493317139..9a7b497a8 100644
Binary files a/airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.mo and b/airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.mo differ
diff --git a/airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.po
index eaac52f2a..9ea6b8de2 100644
--- a/airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.po
@@ -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 \n"
+"PO-Revision-Date: 2013-05-22 10:46+0100\n"
+"Last-Translator: Daniel James \n"
"Language-Team: Greek Localization \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
diff --git a/airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.mo
index 53d1b6267..201b012ee 100644
Binary files a/airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.mo and b/airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.mo differ
diff --git a/airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.po b/airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.po
index 621d42235..2f8df0011 100644
--- a/airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.po
@@ -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 \n"
+"PO-Revision-Date: 2013-05-22 10:47+0100\n"
+"Last-Translator: Daniel James \n"
"Language-Team: Canadian Localization \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"
diff --git a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.mo
index 591176071..69a7a7fe9 100644
Binary files a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.mo and b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.mo differ
diff --git a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po
index 251aa63b4..5d5f4df24 100644
--- a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po
@@ -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 \n"
+"PO-Revision-Date: 2013-05-22 10:48+0100\n"
+"Last-Translator: Daniel James \n"
"Language-Team: British Localization \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"
diff --git a/airtime_mvc/locale/en_US/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/en_US/LC_MESSAGES/airtime.mo
index c0804a7c6..a49c66f48 100644
Binary files a/airtime_mvc/locale/en_US/LC_MESSAGES/airtime.mo and b/airtime_mvc/locale/en_US/LC_MESSAGES/airtime.mo differ
diff --git a/airtime_mvc/locale/en_US/LC_MESSAGES/airtime.po b/airtime_mvc/locale/en_US/LC_MESSAGES/airtime.po
index 106c4aafe..4c86c961a 100644
--- a/airtime_mvc/locale/en_US/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/en_US/LC_MESSAGES/airtime.po
@@ -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 \n"
+"PO-Revision-Date: 2013-05-22 10:49+0100\n"
+"Last-Translator: Daniel James \n"
"Language-Team: United States Localization \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"
diff --git a/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.mo
index 87213fdfb..ef33e67cb 100644
Binary files a/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.mo and b/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.mo differ
diff --git a/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.po b/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.po
index 04cc39939..66f93a264 100644
--- a/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.po
@@ -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 \n"
+"PO-Revision-Date: 2013-05-22 10:49+0100\n"
+"Last-Translator: Daniel James \n"
"Language-Team: Spanish Localization \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
diff --git a/airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.mo
index 0b21313f5..908dd3830 100644
Binary files a/airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.mo and b/airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.mo differ
diff --git a/airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.po
index ed5f744bf..b3663f916 100644
--- a/airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.po
@@ -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 \n"
+"PO-Revision-Date: 2013-05-22 10:49+0100\n"
+"Last-Translator: Daniel James \n"
"Language-Team: French Localization \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
diff --git a/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.mo
index 30a00947e..409bdb80a 100644
Binary files a/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.mo and b/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.mo differ
diff --git a/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po b/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po
index 5d3a6df5b..ed88e074d 100644
--- a/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po
@@ -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 \n"
+"PO-Revision-Date: 2013-05-22 10:50+0100\n"
+"Last-Translator: Daniel James \n"
"Language-Team: Hungarian Localization \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
diff --git a/airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.mo
index 38c9451e7..b92cd061b 100644
Binary files a/airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.mo and b/airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.mo differ
diff --git a/airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.po b/airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.po
index e0fb95784..8484d30b1 100644
--- a/airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.po
@@ -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 \n"
+"PO-Revision-Date: 2013-05-22 10:51+0100\n"
+"Last-Translator: Daniel James \n"
"Language-Team: Italian Localization \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
diff --git a/airtime_mvc/locale/ko_KR/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/ko_KR/LC_MESSAGES/airtime.mo
index 709ae108a..e11d62397 100644
Binary files a/airtime_mvc/locale/ko_KR/LC_MESSAGES/airtime.mo and b/airtime_mvc/locale/ko_KR/LC_MESSAGES/airtime.mo differ
diff --git a/airtime_mvc/locale/ko_KR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ko_KR/LC_MESSAGES/airtime.po
index 54a380988..bfc601f46 100644
--- a/airtime_mvc/locale/ko_KR/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/ko_KR/LC_MESSAGES/airtime.po
@@ -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 \n"
+"PO-Revision-Date: 2013-05-22 10:51+0100\n"
+"Last-Translator: Daniel James \n"
"Language-Team: Korean Localization \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
diff --git a/airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.mo
index a5804281c..a3797bd20 100644
Binary files a/airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.mo and b/airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.mo differ
diff --git a/airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.po b/airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.po
index 1347cdb94..b46b67c06 100644
--- a/airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.po
@@ -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 \n"
+"PO-Revision-Date: 2013-05-22 10:52+0100\n"
+"Last-Translator: Daniel James \n"
"Language-Team: SEMATpl (licencjonuj.eu) & PallottiFM (pallotti.fm) + radioaktywne.pl \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
diff --git a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.mo
index be34d7fe9..a40e94937 100644
Binary files a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.mo and b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.mo differ
diff --git a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po
index 41f01aafa..a5e311a65 100644
--- a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po
@@ -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 \n"
+"PO-Revision-Date: 2013-05-22 10:52+0100\n"
+"Last-Translator: Daniel James \n"
"Language-Team: Brazilian Localization \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
diff --git a/airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.mo
index c3566a61d..a7458f7e1 100644
Binary files a/airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.mo and b/airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.mo differ
diff --git a/airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.po
index 77543432d..87fd6005d 100644
--- a/airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.po
@@ -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 \n"
+"PO-Revision-Date: 2013-05-22 10:53+0100\n"
+"Last-Translator: Daniel James \n"
"Language-Team: Russian Localization \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
diff --git a/airtime_mvc/locale/template/airtime.po b/airtime_mvc/locale/template/airtime.po
index 1790fc3bc..7484ef457 100644
--- a/airtime_mvc/locale/template/airtime.po
+++ b/airtime_mvc/locale/template/airtime.po
@@ -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
diff --git a/airtime_mvc/locale/zh_CN/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/zh_CN/LC_MESSAGES/airtime.mo
index 0b9fcac4a..76aa894c7 100644
Binary files a/airtime_mvc/locale/zh_CN/LC_MESSAGES/airtime.mo and b/airtime_mvc/locale/zh_CN/LC_MESSAGES/airtime.mo differ
diff --git a/airtime_mvc/locale/zh_CN/LC_MESSAGES/airtime.po b/airtime_mvc/locale/zh_CN/LC_MESSAGES/airtime.po
index 1888a0030..a41b4eef1 100644
--- a/airtime_mvc/locale/zh_CN/LC_MESSAGES/airtime.po
+++ b/airtime_mvc/locale/zh_CN/LC_MESSAGES/airtime.po
@@ -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 \n"
+"PO-Revision-Date: 2013-05-22 10:55+0100\n"
+"Last-Translator: Daniel James \n"
"Language-Team: Chinese Localization \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
diff --git a/airtime_mvc/public/css/bootstrap.css b/airtime_mvc/public/css/bootstrap.css
index efe9abff7..2974d8cda 100644
--- a/airtime_mvc/public/css/bootstrap.css
+++ b/airtime_mvc/public/css/bootstrap.css
@@ -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;
-}
\ No newline at end of file
+}
diff --git a/airtime_mvc/public/js/airtime/dashboard/dashboard.js b/airtime_mvc/public/js/airtime/dashboard/dashboard.js
index 5725d7b62..33bb89d46 100644
--- a/airtime_mvc/public/js/airtime/dashboard/dashboard.js
+++ b/airtime_mvc/public/js/airtime/dashboard/dashboard.js
@@ -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")+": "+$.i18n._("Live Stream")+"");
}
- } else if (nextSong == null) {
+ } else {
$('#current').html($.i18n._("Current")+": "+$.i18n._("Nothing Scheduled")+"");
}
}
@@ -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;
diff --git a/airtime_mvc/public/js/airtime/library/library.js b/airtime_mvc/public/js/airtime/library/library.js
index 070930ee3..d00c8ca0c 100644
--- a/airtime_mvc/public/js/airtime/library/library.js
+++ b/airtime_mvc/public/js/airtime/library/library.js
@@ -413,7 +413,7 @@ var AIRTIME = (function(AIRTIME) {
if (ele.bVisible) {
advanceSearchDiv.append(
- "